缓存在它应该到期之前到期

时间:2012-01-24 03:10:35

标签: asp.net caching

有人可以帮助我吗?我有以下代码来存储和修复catch,但是,它不起作用。即使我在slidingExpiration中将其设置为14天,缓存也会在几分钟内到期。提前谢谢!

public static List<ReplyDTO> VideoCommentList()
{
     List<ReplyDTO> replyList = new List<ReplyDTO>();
     if (HttpRuntime.Cache["videoComment"] == null)
     {
         HttpRuntime.Cache.Remove("videoComment");
         HttpRuntime.Cache.Insert("videoComment", replyList, null, Cache.NoAbsoluteExpiration, TimeSpan.FromDays(14));
     }
     else
     {
         replyList = (List<ReplyDTO>)HttpRuntime.Cache["videoComment"];
     }

     if (replyList.Count > 8)
     {
         replyList = replyList.OrderByDescending(x => x.DateCreated).Take(8).ToList();
     }
     else
     {
         replyList = replyList.OrderByDescending(x => x.DateCreated).ToList();
     }
     return replyList;
}

public static List<ReplyDTO> AddVideoComment(ReplyDTO replyDTO)
{
     List<ReplyDTO> replyList = new List<ReplyDTO>();
     replyList = VideoCommentList();
     replyList.Add(replyDTO);
     HttpRuntime.Cache.Insert("videoComment", replyList, null, Cache.NoAbsoluteExpiration, TimeSpan.FromDays(14));

     if (replyList.Count > 8)
     {
          replyList = replyList.OrderByDescending(x => x.DateCreated).Take(8).ToList();
     }
     else
     {
          replyList = replyList.OrderByDescending(x => x.DateCreated).ToList();
     }
     return replyList;
}

5 个答案:

答案 0 :(得分:7)

ASP.net缓存是内存中的,因此如果您的IIS进程或应用程序池回收,它将变得清晰。您可以检查以下可能导致流程再循环的事项

  • 如果您修改web.config,IIS将关闭旧实例并慢慢将流量传输到新实例,在此过程中内存将被回收。 如何检查:您可以通过检查AppDomain.IsFinalizingForUnload并在回调期间记录来检测此情况。
  • Application Pool Recycling:IIS中有一个配置,根据该配置,如果IIS进程在指定时间内处于空闲状态,它会对其进行回收。您可以在服务器上查看此信息,并增加此时间或完全禁用回收。
  • 每个进程都限制了它可以消耗多少内存,如果你在内存中添加太多对象,它将增加IIS的内存消耗,并且在关键时刻OS将回收该进程。

修改

在您的程序中,您要将replyList项添加到缓存中,然后执行.Take()操作。由于replyList是引用对象,如果您修改它,它也会在缓存中更新。因此,如果在您的程序中,如果您执行replyList == null,它将更新缓存中的项目。

请像这样修改您的代码并尝试

public static List<ReplyDTO> VideoCommentList()
{
    List<ReplyDTO> replyList = new List<ReplyDTO>();
    if (HttpRuntime.Cache["videoComment"] == null)
    {
        //Call to .Remove is not required
        //HttpRuntime.Cache.Remove("videoComment");
        HttpRuntime.Cache.Insert("videoComment", replyList, null,
                         Cache.NoAbsoluteExpiration, TimeSpan.FromDays(14));
    }
    else
    {
        //No need to check count > 8, Take will handle it for you
        replyList = ((List<ReplyDTO>)HttpRuntime.Cache["videoComment"])
                        .OrderByDescending(x => x.DateCreated)
                        .Take(8).ToList();
    }
    return replyList;
}

public static List<ReplyDTO> AddVideoComment(ReplyDTO replyDTO)
{
    //Read from cache
    List<ReplyDTO> replyList = ((List<ReplyDTO>)HttpRuntime.Cache["videoComment"]);
    if(replyList == null)
        replyList = VideoCommentList();
    replyList.Add(replyDTO);
    HttpRuntime.Cache.Insert("videoComment", replyList, null, Cache.NoAbsoluteExpiration, TimeSpan.FromDays(14));

    //Here you are creating a new list, and not referencing the one in the cache
    return replyList.OrderByDescending(x => x.DateCreated).Take(8).ToList();
}

重要建议

如果要检查从缓存中删除对象的时间和原因,可以在插入时获取CacheItemRemovedCallback选项的帮助。使用此和CacheItemRemovedReason参数,您可以记录从缓存中删除对象的原因。原因

  1. 已删除 - 您的代码已通过调用InsertRemove方法从缓存中删除了该项。
  2. 已过期 - 项目已从缓存中删除,因为它已过期。
  3. 未充分使用 - 当系统内存不足时,它会通过从缓存中删除项目来释放内存。
  4. DependencyChanged - 项目已从缓存中删除,因为与之关联的缓存依赖项已更改。 (在你的情况下它是无效的)
  5. 希望这些信息对您有所帮助。

答案 1 :(得分:1)

为了追踪你的项目是否从缓存中移除,我建议使用HttpRuntime.Cache.Insert方法的不同重载,以允许您指定CacheItemRemovedCallback回调函数。

Cache.Insert Method (String, Object, CacheDependency, DateTime, TimeSpan, CacheItemPriority, CacheItemRemovedCallback)

除此之外,您的缓存代码似乎很好。但是,一旦您更改代码以指定回调,请记录弹出原因,这可能会让您更好地了解缓存项目变清的原因。

与大多数其他答案一样,我怀疑您的应用程序因各种原因而被回收/重置。我认为生产机器上的大多数应用程序每天至少回收一次,尤其是在共享托管环境中。所以我猜你的数据最多会保留一天。

答案 2 :(得分:0)

缓存位于内存中,并在应用程序回收时过期。我猜你正在开发机器上评估这个问题,因为流量低或文件编辑导致应用程序回收。

答案 3 :(得分:0)

由于多种原因,您的缓存对象可能会被修剪...

AppDomain回收。 记忆压力。 崩溃。 使用Web Garden。 负载均衡。 等等...

这篇文章应该澄清一点......

http://blogs.msdn.com/b/praveeny/archive/2006/12/11/asp-net-2-0-cache-objects-get-trimmed-when-you-have-low-available-memory.aspx

答案 4 :(得分:0)

在AddVideoComment()方法中,将缓存项插入行更改为:

  HttpRuntime.Cache.Insert("videoComment", replyList, null, Cache.NoAbsoluteExpiration, TimeSpan.FromDays(14),CacheItemPriority.NotRemovable,null);

在VideoCommentList()方法中,使用:

       if (HttpRuntime.Cache["videoComment"] == null)
        {
            replyList = VideoCommentList(); 
            HttpRuntime.Cache.Insert("videoComment", replyList, null, Cache.NoAbsoluteExpiration, TimeSpan.FromDays(14),CacheItemPriority.NotRemovable,null);
        }

无需使用HttpRuntime.Cache.Remove("videoComment");作为HttpRuntime.Cache.Insert(将替换现有的缓存项。

干杯, DeveloperConcord