經(jīng)常會用到asp.net的緩存System.Web.Caching.Cache只知道它能緩存 object 類型但是不知道具體類型的性能如何如果緩存一個 List 的類型 ,如下代碼var keylist = GetCacheKeyDataList();如果頻繁的操作這個keylist 會不會影響性能? List<string> GetCacheKeyDataList() { List<string> datalist = null; string key = CACHE_KEY + "_KEYS"; object cacheObject = HttpContext.Current.Cache.Get(key); if (cacheObject == null) { datalist = new List<string>(this.capacity); HttpContext.Current.Cache.Insert(key, datalist); } else { datalist = (List<string>)cacheObject; } return datalist; }
- 2 回答
- 0 關(guān)注
- 856 瀏覽
添加回答
舉報
0/150
提交
取消