博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
ASP.NET Core 开发-缓存(Caching)
阅读量:5086 次
发布时间:2019-06-13

本文共 3296 字,大约阅读时间需要 10 分钟。

ASP.NET Core 缓存Caching,.NET Core 中为我们提供了Caching 的组件。

目前Caching 组件提供了三种存储方式。

Memory

Redis

SqlServer

学习在ASP.NET Core 中使用Caching。

Memory Caching

1.新建一个 ASP.NET Core 项目,选择Web 应用程序,将身份验证 改为 不进行身份验证。

2.添加引用

Install-Package Microsoft.Extensions.Caching.Memory

3.使用

在Startup.cs 中 ConfigureServices

public void ConfigureServices(IServiceCollection services)        {            services.AddMemoryCache();            // Add framework services.            services.AddMvc();                    }

然后在

public class HomeController : Controller    {        private IMemoryCache _memoryCache;        public HomeController(IMemoryCache memoryCache)        {            _memoryCache = memoryCache;        }        public IActionResult Index()        {            string cacheKey = "key";            string result;            if (!_memoryCache.TryGetValue(cacheKey, out result))            {                result = $"LineZero{DateTime.Now}";                _memoryCache.Set(cacheKey, result);            }            ViewBag.Cache = result;            return View();        }    }

 

这里是简单使用,直接设置缓存。

我们还可以加上过期时间,以及移除缓存,还可以在移除时回掉方法。

过期时间支持相对和绝对。

下面是详细的各种用法。

public IActionResult Index()        {            string cacheKey = "key";            string result;            if (!_memoryCache.TryGetValue(cacheKey, out result))            {                result = $"LineZero{DateTime.Now}";                _memoryCache.Set(cacheKey, result);                //设置相对过期时间2分钟                _memoryCache.Set(cacheKey, result, new MemoryCacheEntryOptions()                    .SetSlidingExpiration(TimeSpan.FromMinutes(2)));                //设置绝对过期时间2分钟                _memoryCache.Set(cacheKey, result, new MemoryCacheEntryOptions()                    .SetAbsoluteExpiration(TimeSpan.FromMinutes(2)));                //移除缓存                _memoryCache.Remove(cacheKey);                //缓存优先级 (程序压力大时,会根据优先级自动回收)                _memoryCache.Set(cacheKey, result, new MemoryCacheEntryOptions()                    .SetPriority(CacheItemPriority.NeverRemove));                //缓存回调 10秒过期会回调                _memoryCache.Set(cacheKey, result, new MemoryCacheEntryOptions()                    .SetAbsoluteExpiration(TimeSpan.FromSeconds(10))                    .RegisterPostEvictionCallback((key, value, reason, substate) =>                    {                        Console.WriteLine($"键{key}值{value}改变,因为{reason}");                    }));                //缓存回调 根据Token过期                var cts = new CancellationTokenSource();                _memoryCache.Set(cacheKey, result, new MemoryCacheEntryOptions()                    .AddExpirationToken(new CancellationChangeToken(cts.Token))                    .RegisterPostEvictionCallback((key, value, reason, substate) =>                    {                        Console.WriteLine($"键{key}值{value}改变,因为{reason}");                    }));                cts.Cancel();            }            ViewBag.Cache = result;            return View();        }

 

Distributed Cache Tag Helper

在ASP.NET Core MVC 中有一个 Distributed Cache 我们可以使用。

我们直接在页面上增加distributed-cache 标签即可。

缓存项10秒过期-LineZero

@DateTime.Now

缓存项有人访问就不会过期,无人访问10秒过期-LineZero

@DateTime.Now

这样就能缓存标签内的内容。

 

如果你觉得本文对你有帮助,请点击“推荐”,谢谢。

转载于:https://www.cnblogs.com/linezero/p/5590875.html

你可能感兴趣的文章
HDOJ 1233 还是畅通工程
查看>>
垃圾回收机制
查看>>
C# lambda表达式及初始化器
查看>>
Spring Boot 静态资源处理
查看>>
nginx vhost配置
查看>>
Vue 爬坑之路(二)—— 组件之间的数据传递
查看>>
Mysql客户端下载地址
查看>>
Apache 2.2, PHP 5, and MySQL 5
查看>>
Atitit 列出wifi热点以及连接
查看>>
5、Django实战第5天:首页和登录页面的配置
查看>>
linux系统挂载ISO文件
查看>>
也谈设计模式,架构,框架和类库的区别
查看>>
算法入门经典大赛 Dynamic Programming
查看>>
实验一 命令解释程序的编写
查看>>
BZOJ 1415 聪聪和可可
查看>>
leetcode 121. 买卖股票的最佳时机 JAVA
查看>>
HDOJ 2094 set和map的使用
查看>>
代码规范--捡拾(SQL语句)
查看>>
[javascript]ajax函数写法
查看>>
JavaScript用栈的思想实现数制转换
查看>>