多线程下使用HttpContext.Current.Cache.Get(key) 获取缓存时抛出null错误

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了多线程下使用HttpContext.Current.Cache.Get(key) 获取缓存时抛出null错误相关的知识,希望对你有一定的参考价值。


多线程下使用HttpContext.Current.Cache.Get(key) 获取缓存时抛出null错误

解决办法如下:

 1   /// <summary>
 2         /// 获取缓存对象
 3         /// </summary>
 4         /// <param name="key">缓存Key</param>
 5         /// <returns>object对象</returns>
 6         public static object Get(string key)
 7         {
 8             if (string.IsNullOrEmpty(key))
 9             {
10                 return null;
11             }
12             //将HttpContext.Current.Cache.Get(key) 替换成HttpRuntime.Cache.Get(key) 在多线程下调取缓存的时候就不会抛NULL错误
13             return HttpRuntime.Cache.Get(key);
14         }

 

两者区别:

HttpRuntime.Cache是应用程序级别的, Web和非Web程序都可以使用.

HttpContext.Current.Cache是针对当前WEB上下文定义的,只能在wen程序下使用.

 

以上是关于多线程下使用HttpContext.Current.Cache.Get(key) 获取缓存时抛出null错误的主要内容,如果未能解决你的问题,请参考以下文章

线程那些坑 - HttpContext

HttpContext.Current.Cache 过期时间

HttpContext.Current.Cache 过期时间

使用 IAuthenticationFilter 时 HttpContext.Current 为空

路由请求时 HttpContext.Current.Session 为空

HttpContext.Current.User.Identity.Name 为空