HttpContext.Current.Cache vs. HttpRuntime.Cache

  .NET中Cache有两种调用方式:HttpContext.Current.Cache 和 HttpRuntime.Cache,这两种方式有什么区别呢?我们先看MSDN上的解释:
      HttpContext.Current.Cache:为当前 HTTP 请求获取Cache对象。
      HttpRuntime.Cache:获取当前应用程序的Cache。

      我们再用.NET Reflector工具看看HttpContext.Cache和HttpRuntime.Cache的实现:

ContractedBlock.gifExpandedBlockStart.gifHttpContext.Cache和HttpRuntime.Cache实现
None.gif    //System.Web.HttpContext.Cache属性实现
None.gif
    public sealed class HttpContext
ExpandedBlockStart.gifContractedBlock.gif    
dot.gif{
InBlock.gif        
public Cache Cache
ExpandedSubBlockStart.gifContractedSubBlock.gif        
dot.gif{
InBlock.gif            
get
ExpandedSubBlockStart.gifContractedSubBlock.gif            
dot.gif{
InBlock.gif                
return HttpRuntime.Cache;
ExpandedSubBlockEnd.gif            }

ExpandedSubBlockEnd.gif        }

ExpandedBlockEnd.gif    }

None.gif
None.gif
None.gif    
//System.Web.HttpRuntime.Cache属性实现
None.gif
    public sealed class HttpRuntime
ExpandedBlockStart.gifContractedBlock.gif    
dot.gif{
InBlock.gif        
public static Cache Cache
ExpandedSubBlockStart.gifContractedSubBlock.gif        
dot.gif{
InBlock.gif            
get
ExpandedSubBlockStart.gifContractedSubBlock.gif            
dot.gif{
InBlock.gif                
if (AspInstallDirectoryInternal == null)
ExpandedSubBlockStart.gifContractedSubBlock.gif                
dot.gif{
ExpandedSubBlockStart.gifContractedSubBlock.gif                    
throw new HttpException(SR.GetString("Aspnet_not_installed"new object[] dot.gif{ VersionInfo.SystemWebVersion }));
ExpandedSubBlockEnd.gif                }

InBlock.gif                Cache cache 
= _theRuntime._cachePublic;
InBlock.gif                
if (cache == null)
ExpandedSubBlockStart.gifContractedSubBlock.gif                
dot.gif{
InBlock.gif                    CacheInternal cacheInternal 
= CacheInternal;
InBlock.gif                    CacheSection cacheSection 
= RuntimeConfig.GetAppConfig().Cache;
InBlock.gif                    cacheInternal.ReadCacheInternalConfig(cacheSection);
InBlock.gif                    _theRuntime._cachePublic 
= cacheInternal.CachePublic;
InBlock.gif                    cache 
= _theRuntime._cachePublic;
ExpandedSubBlockEnd.gif                }

InBlock.gif                
return cache;
ExpandedSubBlockEnd.gif            }

ExpandedSubBlockEnd.gif        }

ExpandedBlockEnd.gif    }


       通过上面的代码我们可以看出:HttpContext.Current.Cache是调用HttpRuntime.Cache实现的,两者指向同一Cache对象。那么两者到底有没有区别的?既然两个指向的是同一Cache对象,两者的差别只能出现在HttpContext和HttpRuntime上了。我们再来看看MSDN中HttpContext和HttpRuntime的定义。
      HttpContext:封装有关个别HTTP请求的所有HTTP特定的信息,HttpContext.Current为当前的HTTP请求获取HttpContext对象。

      HttpRuntime:为当前应用程序提供一组ASP.NET运行时服务。

      由上面的定义可以看出:HttpRuntime.Cache相当于就是一个缓存具体实现类,这个类虽然被放在了System.Web命名空间下,但是非Web应用下也是可以使用;HttpContext.Current.Cache是对上述缓存类的封装,由于封装到了HttpContext类中,局限于只能在知道HttpContext下使用,即只能用于Web应用。

      下面的例子可以很好的说明这一点:

ContractedBlock.gif ExpandedBlockStart.gif HttpContext.Cache和HttpRuntime.Cache的示例
None.gif    class CacheTest
ExpandedBlockStart.gifContractedBlock.gif    
dot.gif{
InBlock.gif        
static void Main(string[] args)
ExpandedSubBlockStart.gifContractedSubBlock.gif        
dot.gif{       
InBlock.gif            System.Web.Caching.Cache httpRuntimeCache 
= System.Web.HttpRuntime.Cache;
InBlock.gif            httpRuntimeCache.Insert(
"httpRuntimeCache""I am stored in HttpRuntime.Cache");
InBlock.gif
InBlock.gif            
if (httpRuntimeCache != null)
ExpandedSubBlockStart.gifContractedSubBlock.gif            
dot.gif{
InBlock.gif                Console.WriteLine(
"httpRuntimeCache:" + httpRuntimeCache["httpRuntimeCache"]);
ExpandedSubBlockEnd.gif            }

InBlock.gif
InBlock.gif            System.Web.HttpContext httpContext 
= System.Web.HttpContext.Current;
InBlock.gif            
if (httpContext == null)
ExpandedSubBlockStart.gifContractedSubBlock.gif            
dot.gif{
InBlock.gif                Console.WriteLine(
"HttpContext object is null in Console Project");
ExpandedSubBlockEnd.gif            }

InBlock.gif            
else
ExpandedSubBlockStart.gifContractedSubBlock.gif            
dot.gif{
InBlock.gif                System.Web.Caching.Cache httpContextCache 
= httpContext.Cache;
InBlock.gif                httpContextCache.Insert(
"httpContextCache""I am stored in HttpRuntime.Cache");
InBlock.gif                
if (httpContextCache == null)
ExpandedSubBlockStart.gifContractedSubBlock.gif                
dot.gif{
InBlock.gif                    Console.WriteLine(
"httpContextCache is null");
ExpandedSubBlockEnd.gif                }

ExpandedSubBlockEnd.gif            }

InBlock.gif             
InBlock.gif            Console.ReadLine();
ExpandedSubBlockEnd.gif        }

ExpandedBlockEnd.gif    }


      输出结果:httpRuntimeCache:I am stored in HttpRuntime.Cache
      HttpContext object is null in Console Project

      综上:我们在使用Cache时,尽量使用HttpRuntime.Cache,既能减少出错,也减少了一次函数调用。

      参考资料:HttpRuntime.Cache 与HttpContext.Current.Cache的疑问HttpRuntime.Cache vs. HttpContext.Current.Cache

转载于:https://www.cnblogs.com/CodingPerfectWorld/archive/2010/12/20/1911617.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值