.NET5 NET COER使用程序内部缓存

Posted 棉晗榜

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了.NET5 NET COER使用程序内部缓存相关的知识,希望对你有一定的参考价值。

微软官网文档
https://docs.microsoft.com/zh-cn/dotnet/api/system.runtime.caching.memorycache?view=dotnet-plat-ext-5.0

使用缓存主要是MemoryCache 类

命名空间:
System.Runtime.Caching
程序集:
System.Runtime.Caching.dll

MemoryCache 类支持情况:

.NET Framework: 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8
.NET Platform Extensions: 2.1, 2.2, 3.0, 3.1, 5.0, 6.0 Preview 3

.NET5中如果没有需要在nuget中搜索安装,直接搜索System.Runtime.Caching

public async Task<List<Article_category>> GetListCategoryAsync(byte? stat)
{
    const string key = "cateAll";
    
	//判断是否存在此缓存
	if (!MemoryCache.Default.Contains(key))
	{
		var all = await article_CategoryDAL.GetAllListAsync();
		
		//加入缓存,缓存365天
		MemoryCache.Default.Set(key, all, DateTime.Now.AddDays(365));
	}
	var allCate = (List<Article_category>)MemoryCache.Default.Get(key);
	if (!stat.HasValue)
	{
		return allCate;
	}
	return allCate.Where(x => x.Cate_stat == stat).ToList();
}

以上是关于.NET5 NET COER使用程序内部缓存的主要内容,如果未能解决你的问题,请参考以下文章

net5和net6代码一样吗

.NET5发布了,腾讯招聘点名要求精通MySQL,而不是SQLServer!

[Asp.Net Core]NET5中间件

在 Azure Web 应用中显示 ASP.NET 5 错误页面

面试官:. NET5源码里用到了哪些设计模式?懵!

IIS 将 ASP.NET 5 BETA 8 站点部署到 IIS 会出现 HTTP 错误 500.19 - 内部服务器错误