亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

ASP.NET清空緩存時遇到的問題怎么解決

發布時間:2021-12-06 15:48:59 來源:億速云 閱讀:146 作者:iii 欄目:編程語言

這篇文章主要介紹“ASP.NET清空緩存時遇到的問題怎么解決”,在日常操作中,相信很多人在ASP.NET清空緩存時遇到的問題怎么解決問題上存在疑惑,小編查閱了各式資料,整理出簡單好用的操作方法,希望對大家解答”ASP.NET清空緩存時遇到的問題怎么解決”的疑惑有所幫助!接下來,請跟著小編一起來學習吧!

在網站中要做一個清理緩存的功能(也就是在緩存為到期之前就強制緩存過期),程序中有的地方使用的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來實現的緩存,氣氛呀,為什么微軟總愛搞“特殊化”,對外提供一個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的值  /// </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的方法進行調用,可能有潛在的問題,因此僅供參考。

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清空緩存時遇到的問題怎么解決”的學習就結束了,希望能夠解決大家的疑惑。理論與實踐的搭配能更好的幫助大家學習,快去試試吧!若想繼續學習更多相關知識,請繼續關注億速云網站,小編會繼續努力為大家帶來更多實用的文章!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

台北市| 定远县| 防城港市| 广安市| 汶上县| 光山县| 五寨县| 科技| 竹北市| 钦州市| 宁都县| 广德县| 乌鲁木齐市| 油尖旺区| 西乡县| 达州市| 留坝县| 兰州市| 延长县| 镇安县| 敦化市| 建湖县| 兴仁县| 泰州市| 朝阳市| 明水县| 张家口市| 五家渠市| 湘阴县| 含山县| 文安县| 巩留县| 江陵县| 阿拉善左旗| 灵川县| 常熟市| 科技| 曲松县| 石城县| 秦皇岛市| 盐山县|