gpt4 book ai didi

asp.net-mvc-2 - 如何检查缓存(System.Web.Cache)中是否存在项目?

转载 作者:行者123 更新时间:2023-12-04 00:12:08 25 4
gpt4 key购买 nike

您好,

要检查 key 是否已存在于缓存中,我应该能够执行以下操作:

if(Cache["MyKey"] != null)

然而这不起作用?如果我从 Cache 类创建一个实例,我将能够以这种方式获取对象:
cache.Get("MyKey") or cache["MyKey"]

但即使我像这样检查 null :
if(cache["MyKey"] != null)

它会抛出 NullRefException 吗?

我究竟做错了什么?

编辑 1:

这就是我如何实例化缓存
private Cache cache
{
get {
if (_cache == null)
_cache = new Cache();
return _cache; }
}

最佳答案

检查空值是如何测试某个键的对象是否在缓存中。所以,

if(Cache["MyKey"] != null)

是正确的。

但是,您不应实例化新的 Cache 对象。您可以使用 System.Web.HttpContext.Current.Cache反而。这是 Cache 的实例并且存在于应用程序域中。

来自 MSDN :

One instance of this class is created per application domain, and it remains valid as long as the application domain remains active. Information about an instance of this class is available through the Cache property of the HttpContext object or the Cache property of the Page object.

关于asp.net-mvc-2 - 如何检查缓存(System.Web.Cache)中是否存在项目?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4867385/

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