三分钟学会Redis在.NET Core中作缓存中间件

  你们好,今天给你们说明如何在.NET Core中使用Redis,咱们在想要辩论程序的好与坏,都想须要一个可视化工具,我常用的是一位国内大牛开发的免费工具,其Github地址为: https://github.com/qishibo/AnotherRedisDesktopManager/releases ,它真的很给力,Redis的安装在 https://github.com/MicrosoftArchive/redis/releases,我通常使用的EasyCaching用于作缓存抽象层,首先建立一个.NET Core API 项目,随后nuget安装 EasyCaching.Core 以及 EasyCaching.Redis 。git

public void ConfigureServices(IServiceCollection services)
        {
            services.AddEasyCaching(options=> {
                options.UseRedis(configure => {
                    configure.DBConfig.Endpoints.Add(
                        new EasyCaching.Core.Configurations.ServerEndPoint("localhost",6379)
                    );
                    configure.DBConfig.AllowAdmin = true;
                },"RedisExample");
            });
            services.AddControllers();
        }

   随后在Startup中注册中间件,首先启动添加EasyCaching的服务,在向启动添加EasyCaching的某些选项,能够看到AddEasyCaching的过程是这样的。github

//  EasyCaching service collection extensions.
    public static class EasyCachingServiceCollectionExtensions
    {
        public static IServiceCollection AddEasyCaching(this IServiceCollection services, Action<EasyCachingOptions> setupAction);
    }

   UseRedis 方法的第二个参数,适用于Repository的选择哪一个RedisClient实例,这是很是有利的;咱们建立一个API,名为 RedisController ,其中依赖注入咱们的服务。redis

[Route("/Redis")]
    [ApiController]
    public class RedisController : ControllerBase
    {
        private IEasyCachingProvider cachingProvider;
        private IEasyCachingProviderFactory easyCachingProviderFactory;
        public RedisController(IEasyCachingProviderFactory cachingProviderFactory)
        {
            this.easyCachingProviderFactory = cachingProviderFactory;
            this.cachingProvider = cachingProviderFactory.GetCachingProvider("RedisExample");
        }
        [HttpGet("Demo")]
        public IActionResult SetRedisItem()
        {
            this.cachingProvider.Set("zaranet use easycaching", "this is my value", TimeSpan.FromDays(100));
            return Ok();
        }
    }

  点击启动,访问到 https://localhost:port/Redis/Demo 中,使用可视化工具查看,发现OK了。缓存

 不光如何,咱们咱们进行了赋值,如今应该还须要一个获取的操做。ide

[HttpGet("Get")]
        public IActionResult GetRedisItem()
        {
           var item =  this.cachingProvider.Get<string>("zaranet use easycaching");
           return Ok(item);
        }

 就这样,你就能够在.NET Core中使用Redis去作你以为有价值的事情,都是很是简单的事情。工具

相关文章
相关标签/搜索