public void LoadCitationsModel(RankingType_T rankingType,
                                       Dictionary <string, string> dbStr,
                                       DateTimeOffset to_time)
        {
            KeyValuePair <DateTimeOffset, List <string> > cit;
            DateTimeOffset modelTimeLimit = to_time.AddHours(-1 * Ranker.RankingHoursConsidered);
            string         matchingUrl;

            foreach (KeyValuePair <string, string> rec in dbStr)
            {
                _PrlOpt.CancellationToken.ThrowIfCancellationRequested();

                cit = RankingDataProcessor.GetCitationsFromDbString(rankingType, rec.Value);

                // Add the title Article's URL to the Index
                matchingUrl = RankingDataProcessor.GetMatchingUrl(cit.Value[0]);

                ArtcileIndexInfo idxval = new ArtcileIndexInfo();
                idxval.ArticleId       = rec.Key;
                idxval.ArtcileDatetime = cit.Key;

                try
                {
                    if (!string.IsNullOrEmpty(matchingUrl))
                    {
                        ArticleUrlIdIndex[matchingUrl] = idxval;
                    }
                }
                catch (Exception)    // This Article is already in Index
                {
                    Log.Warn("Ranker init(): Error adding Article for matching URL [{0}] to Index for Article: {1}",
                             matchingUrl,
                             rec.Key.ToString());
                }


                // Build the citation model.
                if (idxval.ArtcileDatetime >= modelTimeLimit)
                {
                    try
                    {
                        AddCitationsInArticle(cit.Key, cit.Value);
                    }
                    catch (Exception)
                    {
                        Log.Warn("Adding Citations in Article with ID [{0}] failed, URL: {1}",
                                 rec.Key.ToString(), rec.Value[0]);
                        //throw;
                    }
                }
            }
        }