在网站中要做一个清理缓存的功能(也就是在缓存为到期之前就强制缓存过期),程序中有的地方使用的HttpRuntime.Cache来做的缓存,而和数据库交互部分则使用ObjectDataSource提供的缓存机制。清理HttpRuntime.Cache的缓存很简单,只要
List<string> keys = new List<string>(); // 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来实现的缓存。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的值 /// </summary> /// <param name="type"></param> /// <param name="propertyName"></param> /// <returns></returns> 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); } /// <summary> /// 得到object对象的propertyName属性的值 /// </summary> /// <param name="obj"></param> /// <param name="propertyName"></param> /// <returns></returns> 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的方法进行调用,可能有潜在的问题,因此仅供参考。
在google上搜索到另外一篇文章,主干是代码,代码的思路和我一样,贴过来也供参考。
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<object> keys = new List<object>(); 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清空缓存时遇到问题详细分析,为了让大家更好地解决此类问题,希望本文对大家的学习有所帮助。
免责声明:本站资源来自互联网收集,仅供用于学习和交流,请遵循相关法律法规,本站一切资源不代表本站立场,如有侵权、后门、不妥请联系本站删除!
RTX 5090要首发 性能要翻倍!三星展示GDDR7显存
三星在GTC上展示了专为下一代游戏GPU设计的GDDR7内存。
首次推出的GDDR7内存模块密度为16GB,每个模块容量为2GB。其速度预设为32 Gbps(PAM3),但也可以降至28 Gbps,以提高产量和初始阶段的整体性能和成本效益。
据三星表示,GDDR7内存的能效将提高20%,同时工作电压仅为1.1V,低于标准的1.2V。通过采用更新的封装材料和优化的电路设计,使得在高速运行时的发热量降低,GDDR7的热阻比GDDR6降低了70%。
更新日志
- 凤飞飞《我们的主题曲》飞跃制作[正版原抓WAV+CUE]
- 刘嘉亮《亮情歌2》[WAV+CUE][1G]
- 红馆40·谭咏麟《歌者恋歌浓情30年演唱会》3CD[低速原抓WAV+CUE][1.8G]
- 刘纬武《睡眠宝宝竖琴童谣 吉卜力工作室 白噪音安抚》[320K/MP3][193.25MB]
- 【轻音乐】曼托凡尼乐团《精选辑》2CD.1998[FLAC+CUE整轨]
- 邝美云《心中有爱》1989年香港DMIJP版1MTO东芝首版[WAV+CUE]
- 群星《情叹-发烧女声DSD》天籁女声发烧碟[WAV+CUE]
- 刘纬武《睡眠宝宝竖琴童谣 吉卜力工作室 白噪音安抚》[FLAC/分轨][748.03MB]
- 理想混蛋《Origin Sessions》[320K/MP3][37.47MB]
- 公馆青少年《我其实一点都不酷》[320K/MP3][78.78MB]
- 群星《情叹-发烧男声DSD》最值得珍藏的完美男声[WAV+CUE]
- 群星《国韵飘香·贵妃醉酒HQCD黑胶王》2CD[WAV]
- 卫兰《DAUGHTER》【低速原抓WAV+CUE】
- 公馆青少年《我其实一点都不酷》[FLAC/分轨][398.22MB]
- ZWEI《迟暮的花 (Explicit)》[320K/MP3][57.16MB]