.NET Core2.0中MemoryCache問題有什么方法修復(fù)解決?針對這個問題,這篇文章詳細介紹了相對應(yīng)的分析和解答,希望可以幫助更多想解決這個問題的小伙伴找到更簡單易行的方法。
昆明網(wǎng)站建設(shè)公司成都創(chuàng)新互聯(lián)公司,昆明網(wǎng)站設(shè)計制作,有大型網(wǎng)站制作公司豐富經(jīng)驗。已為昆明千余家提供企業(yè)網(wǎng)站建設(shè)服務(wù)。企業(yè)網(wǎng)站搭建\外貿(mào)網(wǎng)站制作要多少錢,請找那個售后服務(wù)好的昆明做網(wǎng)站的公司定做!前言
大家應(yīng)該都知道,對于傳統(tǒng)的.NET Framework項目而言,System.Runtime.Caching
命名空間是常用的工具了,其中MemoryCache類則常被用于實現(xiàn)內(nèi)存緩存。
.NET Core 2.0暫時還不支持System.Runtime.Caching dll,這也就意味著MemoryCache相關(guān)代碼不再起作用了。
但是好消息是,我們可以使用.NET Core 2.0的新API實現(xiàn)內(nèi)存緩存功能,簡單修改代碼,解決不兼容問題。下面話不多說了,來一起看看詳細的介紹吧。
解決方案
1.將舊代碼導(dǎo)入項目中,如下:
using System; using System.Runtime.Caching; namespace TestWebApp.Service { public class MemoryCacheService { static ObjectCache cache = MemoryCache.Default; ////// 獲取緩存值 /// /// ///private object GetCacheValue(string key) { if (key != null && cache.Contains(key)) { return cache[key]; } return default(object); } /// /// 添加緩存內(nèi)容 /// /// /// public static void SetChacheValue(string key, object value) { if (key != null) { CacheItemPolicy policy = new CacheItemPolicy { SlidingExpiration = TimeSpan.FromHours(1) }; cache.Set(key, value, policy); } } } }
導(dǎo)入后你會發(fā)現(xiàn)VS會提示無法找到System.Runtime.Caching
命名空間,原有的代碼無法直接編譯使用。
2.添加對Microsoft.Extensions.Caching.Memory
命名空間的引用,它提供了.NET Core默認實現(xiàn)的MemoryCache類,以及全新的內(nèi)存緩存API
using Microsoft.Extensions.Caching.Memory;
3.改寫代碼,使用新的API實現(xiàn)內(nèi)存緩存功能
初始化緩存對象方式改寫前:
static ObjectCache cache = MemoryCache.Default;
初始化緩存對象方式改寫后:
static MemoryCache cache = new MemoryCache(new MemoryCacheOptions());
讀取內(nèi)存緩存值方式變化:
private object GetCacheValue(string key) { if (key != null && cache.Contains(key)) { return cache[key]; } return default(object); }
改寫后:
private object GetCacheValue(string key) { object val = null; if (key != null && cache.TryGetValue(key, out val)) { return val; } else { return default(object); } }
設(shè)定內(nèi)存緩存內(nèi)容方式變化:
public static void SetChacheValue(string key, object value) { if (key != null) { CacheItemPolicy policy = new CacheItemPolicy { SlidingExpiration = TimeSpan.FromHours(1) }; cache.Set(key, value, policy); } }
修改后:
public static void SetChacheValue(string key, object value) { if (key != null) { cache.Set(key, value, new MemoryCacheEntryOptions { SlidingExpiration = TimeSpan.FromHours(1) }); } }
結(jié)論
在使用了Microsoft.Extensions.Caching.Memory
下的新API改寫了舊代碼后,你會發(fā)現(xiàn)原有的各種內(nèi)存緩存超時策略全都是有對應(yīng)新API的,包括AbsoluteExpiration, SlidingExpiration等等。
所以我們還是可以很輕松的使用.NET Core新API簡單改動下下就能重用現(xiàn)有絕大部分舊代碼,將其遷移過來繼續(xù)起作用。
遷移后的完整代碼如下:
using Microsoft.Extensions.Caching.Memory; using System; namespace TestMemoryCacheWebApp.Services { public class MemoryCacheService { static MemoryCache cache = new MemoryCache(new MemoryCacheOptions()); ////// 獲取緩存值 /// /// ///private object GetCacheValue(string key) { object val = null; if (key != null && cache.TryGetValue(key, out val)) { return val; } else { return default(object); } } /// /// 添加緩存內(nèi)容 /// /// /// public static void SetChacheValue(string key, object value) { if (key != null) { cache.Set(key, value, new MemoryCacheEntryOptions { SlidingExpiration = TimeSpan.FromHours(1) }); } } } }
關(guān)于.NET Core2.0中MemoryCache問題有什么方法修復(fù)解決問題的解答就分享到這里了,希望以上內(nèi)容可以對大家有一定的幫助,如果你還有很多疑惑沒有解開,可以關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道了解更多相關(guān)知識。