一旦获得HttpContext.Current.Cache总是有效的,我可以依赖吗?

时间:2013-09-20 03:27:28

标签: c# asp.net caching

我有一个ASP.NET(4.0)网站,在服务器上运行的操作很少,与用户请求无关。 我在Web请求期间广泛使用缓存并将对象保留在HttpContext.Current.Cache。

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

为了访问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始终有效,我可以依赖吗?

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

1 个答案:

答案 0 :(得分:10)

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

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