Core3.0使用Caching.Memory

前言

参考链接:

使用缓存:https://www.cnblogs.com/gygg/p/11275417.html

过期时间:https://www.cnblogs.com/maijin/p/7049355.html

使用过程

引用

Microsoft.Extensions.Caching.Memory

Startup配置

Core3.0使用Caching.Memory

 调用

构造函数注入

Core3.0使用Caching.Memory

Core3.0使用Caching.Memory

 设置过期时间

  设置过期时间有两种方式

Core3.0使用Caching.Memory

 (1)DateTimeOffset

绝对时间,一个具体的Datetime值,比如  “2020-07-03 15:19:23”

(2)TimeSpan

相对时间,在当前时间的基础上设置几秒或几分钟或几小时后过期,比如 TimeSpan.FromMinutes(10)

 

上一篇:How to convert milliseconds to TimeSpan in UiPath - RPA LEARNERS


下一篇:C# 基础 - string 和 Datetime