2

System.Web.Caching.Cache在我的网站使用的程序集中使用。我已将一些密钥过期(绝对过期)设置为 10 秒(仅用于调试)。我还设置了删除键时的回调。

问题是我看到缓存在大约 20 秒而不是 10 秒后被刷新。

我正在使用HttpRuntime.Cache这个。

关于为什么会发生这种情况的任何建议?

我想展示一个代码示例,它可以提供更多信息:

public  void OnUpdate(string key
                      , CacheItemUpdateReason reason
                      , out object expensiveObject
                      , out CacheDependency dependency
                      , out DateTime absoluteExpiration
                      , out TimeSpan slidingExpiration)
{
    using (StreamWriter sw = new StreamWriter(@"C:\temp\foo.txt",true))
    {
        sw.WriteLine("Updated Cache at " + DateTime.UtcNow); 
    }
    expensiveObject = 11;
    dependency = null;
    absoluteExpiration = DateTime.UtcNow.AddSeconds(3);
    slidingExpiration = Cache.NoSlidingExpiration;
}
protected void Page_Load(object sender, EventArgs e)
{
    log.WriteInfo("Updated Cache", MethodBase.GetCurrentMethod());
    Page.Cache.Insert("foo", (object)11, null, DateTime.UtcNow.AddSeconds(10), Cache.NoSlidingExpiration, new CacheItemUpdateCallback(OnUpdate));
}

在这里,我使用了Page.Cache. 更新应该是每 3 秒。实际上它每 40 秒执行一次,如下面的打印输出所示:

Updated Cache at 1/28/2011 1:38:20 AM Updated Cache at 1/28/2011 1:38:40 AM Updated Cache at 1/28/2011 1:39:00 AM Updated Cache at 1/28/2011 1:39:20 AM Updated Cache at 1/28/2011 1:39:40 AM Updated Cache at 1/28/2011 1:40:00 AM Updated Cache at 1/28/2011 1:40:20 AM Updated Cache at 1/28/2011 1:40:40 AM Updated Cache at 1/28/2011 1:41:00 AM Updated Cache at 1/28/2011 1:41:20 AM Updated Cache at 1/28/2011 1:41:40 AM Updated Cache at 1/28/2011 1:42:00 AM Updated Cache at 1/28/2011 1:42:20 AM Updated Cache at 1/28/2011 1:42:40 AM

可能是什么问题呢 ?

4

2 回答 2

5

内部缓存过期计时器仅每 20 秒触发一次。

我反映到System.Web.Caching.CacheExpires

但后来发现它已经在 SO

更改 ASP.NET 缓存项过期的频率?

于 2011-01-28T04:25:48.680 回答
0

您可以使用在PokeIn库中实现的 PCache 类。非常好的是,免费版对这个课程没有限制。它具有许多功能,并且比 System.Web.Caching.Cache 类要好得多。

此外,链接上还有一个示例项目。您可以使用 PCache 将 TimerInterval 更改为 6 秒。

于 2011-02-17T21:18:55.093 回答