這篇文章主要介紹“ASP.NET清空緩存時遇到的問題怎么解決”,在日常操作中,相信很多人在ASP.NET清空緩存時遇到的問題怎么解決問題上存在疑惑,小編查閱了各式資料,整理出簡單好用的操作方法,希望對大家解答”ASP.NET清空緩存時遇到的問題怎么解決”的疑惑有所幫助!接下來,請跟著小編一起來學(xué)習(xí)吧!
創(chuàng)新互聯(lián)公司長期為成百上千客戶提供的網(wǎng)站建設(shè)服務(wù),團(tuán)隊(duì)從業(yè)經(jīng)驗(yàn)10年,關(guān)注不同地域、不同群體,并針對不同對象提供差異化的產(chǎn)品和服務(wù);打造開放共贏平臺,與合作伙伴共同營造健康的互聯(lián)網(wǎng)生態(tài)環(huán)境。為恩施土家企業(yè)提供專業(yè)的做網(wǎng)站、網(wǎng)站設(shè)計,恩施土家網(wǎng)站改版等技術(shù)服務(wù)。擁有十年豐富建站經(jīng)驗(yàn)和眾多成功案例,為您定制開發(fā)。
在網(wǎng)站中要做一個清理緩存的功能(也就是在緩存為到期之前就強(qiáng)制緩存過期),程序中有的地方使用的HttpRuntime.Cache來做的緩存,而和數(shù)據(jù)庫交互部分則使用ObjectDataSource提供的緩存機(jī)制。清理HttpRuntime.Cache的緩存很簡單,只要
Listkeys = 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等數(shù)據(jù)源的緩存也是保存在HttpRuntime.Cache中,經(jīng)過測試沒想到竟然不是,因?yàn)閳?zhí)行上面的代碼以后ObjectDataSource仍然是從緩存讀取數(shù)據(jù)。
使用Reflector反編譯發(fā)現(xiàn)ObjectDataSource是使用HttpRuntime.CacheInternal來實(shí)現(xiàn)的緩存,氣氛呀,為什么微軟總愛搞“特殊化”,對外提供一個Cache用,自己偷偷用CacheInternal做緩存。CacheInternal是internal的,因此沒法直接寫代碼調(diào)用,同時CacheInternal中也沒提供清空緩存的方法,只能通過實(shí)驗(yàn)發(fā)現(xiàn)_caches._entries是保存緩存的Hashtable,因此就用反射的方法調(diào)用CacheInternal,然后拿到_caches._entries,***clear才算ok。
最終代碼如下:
//HttpRuntime下的CacheInternal屬性(Internal的,內(nèi)存中是CacheMulti類型)是ObjectDataSource等DataSource保存緩存的管理器 //因?yàn)镃acheInternal、_caches、_entries等都是internal或者private的,所以只能通過反射調(diào)用,而且可能會隨著.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中保存緩存數(shù)據(jù)的一個private Hashtable Hashtable _entries = CommonHelper.GetFieldValue(cacheSingle, "_entries") as Hashtable; _entries.Clear(); } mary> /// 得到type類型的靜態(tài)屬性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的方法進(jìn)行調(diào)用,可能有潛在的問題,因此僅供參考。
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
到此,關(guān)于“ASP.NET清空緩存時遇到的問題怎么解決”的學(xué)習(xí)就結(jié)束了,希望能夠解決大家的疑惑。理論與實(shí)踐的搭配能更好的幫助大家學(xué)習(xí),快去試試吧!若想繼續(xù)學(xué)習(xí)更多相關(guān)知識,請繼續(xù)關(guān)注創(chuàng)新互聯(lián)網(wǎng)站,小編會繼續(xù)努力為大家?guī)砀鄬?shí)用的文章!