我的应用程序中有一个数据缓存,它保存查询结果并在每个“对小时”即(08:00、10:00、12:00)绝对过期。
所以:
public Dictionary<int, List<Int64>> GetCacheDNAOffers()
{
if (_cache["DnaOffersPairs"] == null)
{
Dictionary<int, string> dtDNA = GetCacheActiveOffers().AsEnumerable().Select(d => new { idOferta = Convert.ToInt32(d["nof_id"]), dna = d["nof_dna"].ToString() }).ToDictionary(t => t.idOferta, t => t.dna);
Dictionary<int, List<Int64>> lstDNA = new Dictionary<int, List<Int64>>();
foreach (var dna in dtDNA)
{
lstDNA[dna.Key] = CarregarDNA(dna.Value);
}
_cache.Insert("DnaOffersPairs", lstDNA, null, SetTimeCacheExpires(), TimeSpan.Zero);
}
return (Dictionary<int, List<Int64>>)_cache["DnaOffersPairs"];
}
设置过期时间的函数:
private DateTime SetTimeCacheExpires()
{
try
{
int hour = DateTime.Now.Hour;
int minutes = DateTime.Now.Minute;
int qtdhoursToExpire = 1;
NextHours = (hour + qtdhoursToExpire);
return new DateTime(DateTime.Now.Year, DateTime.Now.Month, DateTime.Now.Day, PairHour, minutes, 1);
}
catch (Exception ex)
{
throw ex;
}
}
以及检查“配对时间”的功能:
public int PairHour
{
get
{
if (NextHours % 2 == 0)
return NextHours;
else
return NextHours + 1;
}
}
有时会出现缓存过期的问题,如果应用程序空闲了一段时间,所有浏览器窗口都关闭了。
是否有我需要在 IIS 上设置的配置来设置该缓存永久保持活动状态,直到预配置缓存结束?还是在代码上正确设置了缓存配置?