欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

.NET Core 2.0迁移小技巧之MemoryCache问题修复解决的方法

程序员文章站 2022-03-10 21:28:51
前言 大家应该都知道,对于传统的.net framework项目而言,system.runtime.caching命名空间是常用的工具了,其中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命名空间,原有的代码无法直接编译使用。

.NET Core 2.0迁移小技巧之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)
    });
   }
  }
 }
}

总结

以上就是这篇文章的全部内容了,希望本文的内容对大家的学习或者工作能带来一定的帮助,如果有疑问大家可以留言交流,谢谢大家对的支持。