91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

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

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

MemoryCache問題修復怎么辦

發布時間:2020-08-11 15:25:26 來源:億速云 閱讀:143 作者:小新 欄目:編程語言

MemoryCache問題修復怎么辦?這個問題可能是我們日常學習或工作經常見到的。希望通過這個問題能讓你收獲頗深。下面是小編給大家帶來的參考內容,讓我們一起來看看吧!

 這篇文章主要給大家介紹了關于.NET Core 2.0遷移小技巧之MemoryCache問題修復解決的相關資料,文中通過示例代碼介紹的非常詳細,對大家的學習或者工作具有一定的參考學習價值,需要的朋友們下面隨著小編來一起學習學習吧。

前言

大家應該都知道,對于傳統的.NET Framework項目而言,System.Runtime.Caching命名空間是常用的工具了,其中MemoryCache類則常被用于實現內存緩存。

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

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

解決方案

1.將舊代碼導入項目中,如下:

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>
  /// 添加緩存內容
  /// </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);
   }
  }
 }
}

導入后你會發現VS會提示無法找到System.Runtime.Caching命名空間,原有的代碼無法直接編譯使用。

MemoryCache問題修復怎么辦

2.添加對Microsoft.Extensions.Caching.Memory命名空間的引用,它提供了.NET Core默認實現的MemoryCache類,以及全新的內存緩存API

using Microsoft.Extensions.Caching.Memory;

3.改寫代碼,使用新的API實現內存緩存功能

初始化緩存對象方式改寫前:

static ObjectCache cache = MemoryCache.Default;

初始化緩存對象方式改寫后:

static MemoryCache cache = new MemoryCache(new MemoryCacheOptions());

讀取內存緩存值方式變化:

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);
 }
}

設定內存緩存內容方式變化:

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)
  });
 }
}

結論

在使用了Microsoft.Extensions.Caching.Memory下的新API改寫了舊代碼后,你會發現原有的各種內存緩存超時策略全都是有對應新API的,包括AbsoluteExpiration, SlidingExpiration等等。

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

遷移后的完整代碼如下:

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>
  /// 添加緩存內容
  /// </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)
    });
   }
  }
 }
}

感謝各位的閱讀!看完上述內容,你們對MemoryCache問題修復怎么辦大概了解了嗎?希望文章內容對大家有所幫助。如果想了解更多相關文章內容,歡迎關注億速云行業資訊頻道。

向AI問一下細節

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

AI

灵石县| 怀远县| 蒙阴县| 武鸣县| 天柱县| 永丰县| 中宁县| 潮安县| 葵青区| 开封县| 图木舒克市| 宁远县| 阿勒泰市| 定陶县| 德昌县| 额敏县| 呼和浩特市| 阳春市| 彝良县| 买车| 法库县| 辽宁省| 裕民县| 陇西县| 六盘水市| 镇远县| 南昌市| 广灵县| 方正县| 连南| 南乐县| 寻甸| 舞钢市| 长白| 梨树县| 白银市| 余姚市| 甘肃省| 永丰县| 平塘县| 麻栗坡县|