首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 网站开发 > asp.net >

缓存失效有关问题

2012-02-11 
缓存失效问题SqlCacheDependency 缓存失效问题:有如下代码:string key Customer_by_Id_ + customerId

缓存失效问题
SqlCacheDependency 缓存失效问题:

有如下代码:
  string key = "Customer_by_Id_" + customerId;
  IList<CustomerInfo> data= (IList<CustomerInfo>)HttpRuntime.Cache[key];
  // Check if the data exists in the data cache
  if (data == null) {
  data = customer.GetCustomersById(customerId);
   
  AggregateCacheDependency cd = DependencyFacade.GetCustomerDependency();

  HttpRuntime.Cache.Add(key, data, cd, DateTime.Now.AddHours(12), Cache.NoSlidingExpiration, CacheItemPriority.High, null);
  }
我的数据库表在运行中并没有更新,但在单步调试时经常会发生data为null的情况,不清楚是什么原因使Cache失效?是否是内存不足,asp.net 自动把data 调出缓存?

[解决办法]
重载NotifyDependencyChanged,在调用父类方法时加入自己的日志。

热点排行