千家信息网

ASP.NET清空缓存时遇到的问题怎么解决

发表于:2025-01-18 作者:千家信息网编辑
千家信息网最后更新 2025年01月18日,这篇文章主要介绍"ASP.NET清空缓存时遇到的问题怎么解决",在日常操作中,相信很多人在ASP.NET清空缓存时遇到的问题怎么解决问题上存在疑惑,小编查阅了各式资料,整理出简单好用的操作方法,希望对
千家信息网最后更新 2025年01月18日ASP.NET清空缓存时遇到的问题怎么解决

这篇文章主要介绍"ASP.NET清空缓存时遇到的问题怎么解决",在日常操作中,相信很多人在ASP.NET清空缓存时遇到的问题怎么解决问题上存在疑惑,小编查阅了各式资料,整理出简单好用的操作方法,希望对大家解答"ASP.NET清空缓存时遇到的问题怎么解决"的疑惑有所帮助!接下来,请跟着小编一起来学习吧!

在网站中要做一个清理缓存的功能(也就是在缓存为到期之前就强制缓存过期),程序中有的地方使用的HttpRuntime.Cache来做的缓存,而和数据库交互部分则使用ObjectDataSource提供的缓存机制。清理HttpRuntime.Cache的缓存很简单,只要

List keys = new List();              // retrieve application Cache enumerator  IDictionaryEnumerator enumerator = HttpRuntime.Cache.GetEnumerator();              // copy all keys that currently exist in Cache              while (enumerator.MoveNext())              {                  keys.Add(enumerator.Key.ToString());              }              // delete every key from cache              for (int i = 0; i < keys.Count; i++)              {                  HttpRuntime.Cache.Remove(keys[i]);              }

就可以了。

本以为ObjectDataSource等数据源的缓存也是保存在HttpRuntime.Cache中,经过测试没想到竟然不是,因为执行上面的代码以后ObjectDataSource仍然是从缓存读取数据。

使用Reflector反编译发现ObjectDataSource是使用HttpRuntime.CacheInternal来实现的缓存,气氛呀,为什么微软总爱搞"特殊化",对外提供一个Cache用,自己偷偷用CacheInternal做缓存。CacheInternal是internal的,因此没法直接写代码调用,同时CacheInternal中也没提供清空缓存的方法,只能通过实验发现_caches._entries是保存缓存的Hashtable,因此就用反射的方法调用CacheInternal,然后拿到_caches._entries,***clear才算ok。

最终代码如下:

//HttpRuntime下的CacheInternal属性(Internal的,内存中是CacheMulti类型)是ObjectDataSource等DataSource保存缓存的管理器  //因为CacheInternal、_caches、_entries等都是internal或者private的,所以只能通过反射调用,而且可能会随着.Net升级而失效      object cacheIntern = CommonHelper.GetPropertyValue(typeof(HttpRuntime), "CacheInternal") as IEnumerable;      //_caches是CacheMulti中保存多CacheSingle的一个IEnumerable字段。      IEnumerable _caches = CommonHelper.GetFieldValue(cacheIntern, "_caches") as IEnumerable;      foreach (object cacheSingle in _caches)      {          ClearCacheInternal(cacheSingle);      }   private static void ClearCacheInternal(object cacheSingle)  {      //_entries是cacheSingle中保存缓存数据的一个private Hashtable   Hashtable _entries = CommonHelper.GetFieldValue(cacheSingle, "_entries") as Hashtable;      _entries.Clear();  }   mary>  /// 得到type类型的静态属性propertyName的值  ///   ///   ///   ///   public static object GetPropertyValue(Type type, string propertyName)  {      foreach (PropertyInfo rInfo in type.GetProperties(BindingFlags.NonPublic | BindingFlags.Static | BindingFlags.Public | BindingFlags.Instance))      {          if (rInfo.Name == propertyName)          {              return rInfo.GetValue(null, new object[0]);          }      }      throw new Exception("无法找到属性:" + propertyName);  }   ///   /// 得到object对象的propertyName属性的值  ///   ///   ///   ///   public static object GetPropertyValue(object obj, string propertyName)  {      Type type = obj.GetType();      foreach (PropertyInfo rInfo in type.GetProperties(BindingFlags.NonPublic | BindingFlags.Static | BindingFlags.Public | BindingFlags.Instance))      {          if (rInfo.Name == propertyName)          {              return rInfo.GetValue(obj, new object[0]);          }      }      throw new Exception("无法找到属性:" + propertyName);  }   public static object GetFieldValue(object obj, string fieldName)  {      Type type = obj.GetType();      foreach (FieldInfo rInfo in type.GetFields(BindingFlags.NonPublic | BindingFlags.Static | BindingFlags.Public | BindingFlags.Instance))      {          if (rInfo.Name == fieldName)          {              return rInfo.GetValue(obj);          }      }      throw new Exception("无法找到字段:" + fieldName);  }

上面方法由于是通过crack的方法进行调用,可能有潜在的问题,因此仅供参考。

private void clearOutputCache()  {      Type ct = this.Cache.GetType();      FieldInfo cif = ct.GetField( "_cacheInternal", BindingFlags.NonPublic | BindingFlags.Instance );      Type cmt = Cache.GetType().Assembly.GetType( "System.Web.Caching.CacheMultiple" );      Type cachekeyType = Cache.GetType().Assembly.GetType( "System.Web.Caching.CacheKey" );      FieldInfo cachesfield = cmt.GetField( "_caches", BindingFlags.NonPublic | BindingFlags.Instance );       object cacheInternal = cif.GetValue( this.Cache );      object caches = cachesfield.GetValue( cacheInternal );       Type arrayType = typeof( Array );      MethodInfo arrayGetter = arrayType.GetMethod( "GetValue", new Type[] { typeof( int ) } );      object cacheSingle = arrayGetter.Invoke( caches, new object[] { 1 } );       FieldInfo entriesField = cacheSingle.GetType().GetField( "_entries", BindingFlags.Instance | BindingFlags.NonPublic );      Hashtable entries = (Hashtable) entriesField.GetValue( cacheSingle );       List keys = new List();      foreach( object o in entries.Keys )      {          keys.Add( o );      }       MethodInfo remove = cacheInternal.GetType().GetMethod( "Remove", BindingFlags.NonPublic | BindingFlags.Instance, null,          new Type[] { cachekeyType, typeof( CacheItemRemovedReason ) }, null );      foreach( object key in keys )      {          remove.Invoke( cacheInternal, new object[] { key, CacheItemRemovedReason.Removed } );      }  }

到此,关于"ASP.NET清空缓存时遇到的问题怎么解决"的学习就结束了,希望能够解决大家的疑惑。理论与实践的搭配能更好的帮助大家学习,快去试试吧!若想继续学习更多相关知识,请继续关注网站,小编会继续努力为大家带来更多实用的文章!

缓存 问题 属性 方法 数据 学习 代码 字段 更多 类型 网站 反射 帮助 实用 特殊 仅供参考 接下来 没想到 也就是 内存 数据库的安全要保护哪些东西 数据库安全各自的含义是什么 生产安全数据库录入 数据库的安全性及管理 数据库安全策略包含哪些 海淀数据库安全审计系统 建立农村房屋安全信息数据库 易用的数据库客户端支持安全管理 连接数据库失败ssl安全错误 数据库的锁怎样保障安全 工行软件开发中心校招学校 腾越互联网科技有限公司 河北服务器基地虚拟主机云空间 网络安全生态试卷3答案 惠州商城软件开发联系人 post服务器接收顺序 数据库太大怎么办 软件开发股没有前途吗 单招学习计算机网络技术有前途吗 广东通信软件开发报价行情 太阳能控制器软件开发 谢美意 数据库课程 内网访问内网服务器 延安网络技术联系方式 桂林创景网络技术有限公司 网络安全应急响应有几个等级 网络安全周工信部领导发言稿 易软软件开发 海口网络安全培训东塔特训营 在三线城市做软件开发 网易云音乐连接到服务器 服务器怎么自定义显示屏 南关区新时代网络安全服务保障 黑龙江双轨直销软件开发价格 幼儿网络安全小视频 应用软件开发是属于小型微 常用的法律法规数据库有哪些 中国金融数据库上市公司 魂之力量一键端数据库修改 商城系统数据库设计
0