成人午夜视频全免费观看高清-秋霞福利视频一区二区三区-国产精品久久久久电影小说-亚洲不卡区三一区三区一区

.NETCore2.0中MemoryCache問題有什么方法修復(fù)解決-創(chuàng)新互聯(lián)

.NET Core2.0中MemoryCache問題有什么方法修復(fù)解決?針對(duì)這個(gè)問題,這篇文章詳細(xì)介紹了相對(duì)應(yīng)的分析和解答,希望可以幫助更多想解決這個(gè)問題的小伙伴找到更簡單易行的方法。

昆明網(wǎng)站建設(shè)公司成都創(chuàng)新互聯(lián)公司,昆明網(wǎng)站設(shè)計(jì)制作,有大型網(wǎng)站制作公司豐富經(jīng)驗(yàn)。已為昆明千余家提供企業(yè)網(wǎng)站建設(shè)服務(wù)。企業(yè)網(wǎng)站搭建\外貿(mào)網(wǎng)站制作要多少錢,請(qǐng)找那個(gè)售后服務(wù)好的昆明做網(wǎng)站的公司定做!

前言

大家應(yīng)該都知道,對(duì)于傳統(tǒng)的.NET Framework項(xiàng)目而言,System.Runtime.Caching命名空間是常用的工具了,其中MemoryCache類則常被用于實(shí)現(xiàn)內(nèi)存緩存。

.NET Core 2.0暫時(shí)還不支持System.Runtime.Caching dll,這也就意味著MemoryCache相關(guān)代碼不再起作用了。

但是好消息是,我們可以使用.NET Core 2.0的新API實(shí)現(xiàn)內(nèi)存緩存功能,簡單修改代碼,解決不兼容問題。下面話不多說了,來一起看看詳細(xì)的介紹吧。

解決方案

1.將舊代碼導(dǎo)入項(xiàng)目中,如下:

using System;
using System.Runtime.Caching;

namespace TestWebApp.Service
{
 public class MemoryCacheService
 {
  static ObjectCache cache = MemoryCache.Default;
  /// <summary>
  /// 獲取緩存值
  /// </summary>
  /// <param name="key"></param>
  /// <returns></returns>
  private object GetCacheValue(string key)
  {
   if (key != null && cache.Contains(key))
   {
    return cache[key];
   }
   return default(object);
  }
  /// <summary>
  /// 添加緩存內(nèi)容
  /// </summary>
  /// <param name="key"></param>
  /// <param name="value"></param>
  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)入后你會(huì)發(fā)現(xiàn)VS會(huì)提示無法找到System.Runtime.Caching命名空間,原有的代碼無法直接編譯使用。

.NET Core2.0中MemoryCache問題有什么方法修復(fù)解決

2.添加對(duì)Microsoft.Extensions.Caching.Memory命名空間的引用,它提供了.NET Core默認(rèn)實(shí)現(xiàn)的MemoryCache類,以及全新的內(nèi)存緩存API

using Microsoft.Extensions.Caching.Memory;

3.改寫代碼,使用新的API實(shí)現(xiàn)內(nèi)存緩存功能

初始化緩存對(duì)象方式改寫前:

static ObjectCache cache = MemoryCache.Default;

初始化緩存對(duì)象方式改寫后:

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改寫了舊代碼后,你會(huì)發(fā)現(xiàn)原有的各種內(nèi)存緩存超時(shí)策略全都是有對(duì)應(yīng)新API的,包括AbsoluteExpiration, SlidingExpiration等等。

所以我們還是可以很輕松的使用.NET Core新API簡單改動(dòng)下下就能重用現(xiàn)有絕大部分舊代碼,將其遷移過來繼續(xù)起作用。

遷移后的完整代碼如下:

using Microsoft.Extensions.Caching.Memory;
using System;

namespace TestMemoryCacheWebApp.Services
{
 public class MemoryCacheService
 {
  static MemoryCache cache = new MemoryCache(new MemoryCacheOptions());
  /// <summary>
  /// 獲取緩存值
  /// </summary>
  /// <param name="key"></param>
  /// <returns></returns>
  private object GetCacheValue(string key)
  {
   object val = null;
   if (key != null && cache.TryGetValue(key, out val))
   {

    return val;
   }
   else
   {
    return default(object);
   }
  }
  /// <summary>
  /// 添加緩存內(nèi)容
  /// </summary>
  /// <param name="key"></param>
  /// <param name="value"></param>
  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)容可以對(duì)大家有一定的幫助,如果你還有很多疑惑沒有解開,可以關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道了解更多相關(guān)知識(shí)。

當(dāng)前標(biāo)題:.NETCore2.0中MemoryCache問題有什么方法修復(fù)解決-創(chuàng)新互聯(lián)
當(dāng)前地址:http://jinyejixie.com/article4/dsicoe.html

成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供品牌網(wǎng)站制作Google、品牌網(wǎng)站設(shè)計(jì)、網(wǎng)站改版、網(wǎng)站導(dǎo)航、軟件開發(fā)

廣告

聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請(qǐng)盡快告知,我們將會(huì)在第一時(shí)間刪除。文章觀點(diǎn)不代表本網(wǎng)站立場,如需處理請(qǐng)聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時(shí)需注明來源: 創(chuàng)新互聯(lián)

小程序開發(fā)
龙泉市| 廉江市| 綦江县| 府谷县| 洛宁县| 望都县| 高雄市| 岱山县| 和平县| 吉林省| 富民县| 孟州市| 阜平县| 宝兴县| 芷江| 乡城县| 仙居县| 泸水县| 瓦房店市| 武安市| 冷水江市| 青神县| 延边| 高尔夫| 阳谷县| 云梦县| 游戏| 怀来县| 榕江县| 阳山县| 广德县| 宝清县| 博湖县| 桃源县| 峡江县| 古交市| 老河口市| 安丘市| 邮箱| 芦溪县| 五峰|