我在IMemoryCache
中添加一个值
_cache.Set("Key", "Value", DateTimeOffset.UtcNow);
我想在其他方法中获得此密钥的绝对到期值。
要么
我想更新此密钥的值而不更改到期时间。
我怎样才能做到这一点?
最佳答案
IMemoryCache
(如其documentation一样)没有任何方法来使项目过期。
其默认实现MemoryCache相同。
关于c# - 如何获取IMemoryCache中的键的AbsoluteExpiration DateTimeOffset,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/61175442/