4

我有一个 ASP.NET (4.0) 网站,该网站几乎没有独立于用户请求在服务器上运行的操作。我在 Web 请求期间广泛使用缓存并将对象保存在 HttpContext.Current.Cache 中。

问题是对于不是由用户请求引起的所有线程 HttpContext.Current 为空,我无法访问缓存。

为了访问 HttpContext.Current.Cache 我计划使用以下内容:

class CacheWrapper
{
    public void Insert(string key, Object obj)
    {
        Cache cache = CacheInstance;
        if (cache == null)
        {
            return;
        }
        cache.Insert(key, obj);
    }

    public Object Get(string key)
    {
        Cache cache = CacheInstance;
        if (cache == null)
        {
            return;
        }
        return cache.Get(key);
    }

    private Cache CacheInstance
    {
        get
        {
            if (_cache == null)
            {
                if (HttpContext.Current == null)
                {
                    return null;
                }
                lock (_lock)
                {
                    if (_cache == null)
                    {
                        _cache = HttpContext.Current.Cache;
                    }
                }
            }
            return _cache;
        }
    }
}

因此,在向网站发出第一个请求之前,不会应用任何缓存,但是一旦发出至少一个请求,对 HttpContext.Current.Cache 的引用将被保存,并且所有后台服务器操作都可以访问缓存。

问题:

我可以相信一旦获得 HttpContext.Current.Cache 将始终有效吗?

非常感谢你。任何关于这个想法的想法或评论都非常受欢迎!

4

1 回答 1

10

HttpContext.Current.Cache我建议不要使用 using ,而是使用HttpRuntime.Cache- 两个属性都指向同一个缓存,但后者不像前者那样依赖于当前上下文。

ObjectCache如果您正在编写一个用于多种不同类型的应用程序/服务的通用缓存包装器,您可能想看看MemoryCache它们是否对您的需要有用。

于 2013-09-20T03:39:13.247 回答