gpt4 book ai didi

c# - ObjectCache 在一致设置后不会立即包含项目

转载 作者:太空宇宙 更新时间:2023-11-03 14:13:06 25 4
gpt4 key购买 nike

所有-我正在尝试使用新的 ObjectCache 对象创建服务器端缓存。无论出于何种原因,以下内容都会引发异常...

_cache.Set(CacheKey.LOCATIONS, cachedLocations, DateTimeOffset.Now.AddHours(2));
if (!_cache.Contains(CacheKey.LOCATIONS))
throw new Exception("Did not add location to the cache.");

_cache在服务层通过以下方式实例化...

private ObjectCache _cache = MemoryCache.Default;

每次设置缓存时都会发生此异常,第一次除外。异常是代码中显示的那个……“没有将位置添加到缓存。”

---编辑笔记。 ObjectCache 是静态的,但不需要它是静态的,因为 MemoryCache.Default 是静态的。

最佳答案

您应该使用 Add() 方法在缓存中创建一个新条目。Set() 方法涉及的键已经存在。

关于c# - ObjectCache 在一致设置后不会立即包含项目,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7208902/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com