繁体中文
设为首页
加入收藏
当前位置:.Net技术首页 >> Asp.Net开发 >> HttpContext.Cache和HttpRuntime.Cache

HttpContext.Cache和HttpRuntime.Cache

2007-09-15 08:00:00  作者:  来源:互联网  浏览次数:0  文字大小:【】【】【
简介:ASP.Net中可以方便的使用缓存,对于Cache,一般有两种方式调用:HttpContext.Cache和HttpRuntime.Cache。那么这两种Cache有什么区别呢? 先来看看Msdn上的注释: HttpRuntime.Cache:获取当前应用程序的 Cache。...

ASP.Net中可以方便的使用缓存,对于Cache,一般有两种方式调用:HttpContext.Cache和HttpRuntime.Cache。那么这两种Cache有什么区别呢?

先来看看Msdn上的注释:

HttpRuntime.Cache:获取当前应用程序的 Cache。

HttpContext.Cache:为当前 HTTP 请求获取 Cache 对象。

那么是不是说对于HttpRuntime.Cache就是应用程序级,而HttpContext.Cache则是针对每个用户的呢?NO,而实际上,两者调用的是同一个对象。他们的区别仅仅在于调用方式不一样(就我所知)。

事实胜过雄辩,写个例子来证实一下(限于篇幅仅贴出关键代码,完整代码见附件WebDemo.rar):

/**////

/// 通过HttpRuntime.Cache的方式来保存Cache

///

private void btnHttpRuntimeCacheSave_Click(object sender, System.EventArgs e)

...{

HttpRuntime.Cache.Insert(cacheKey, cacheValue, null, DateTime.Now.AddMinutes(3), TimeSpan.Zero);

}

/**////

/// 通过HttpRuntime.Cache的方式来读取Cache

///

private void btnHttpRuntimeCacheLoad_Click(object sender, System.EventArgs e)

...{

if (HttpRuntime.Cache[cacheKey] == null)

...{

cacheContent = "No Cache";

}

else

...{

cacheContent = (string)HttpRuntime.Cache[cacheKey];

}

lblCacheContent.Text = cacheContent;

}

/**////

/// 通过HttpContext.Cache的方式来保存Cache

///

private void btnHttpContextCacheSave_Click(object sender, System.EventArgs e)

...{

HttpContext.Current.Cache.Insert(cacheKey, cacheValue, null, DateTime.Now.AddMinutes(3), TimeSpan.Zero);

}

/**////

/// 通过HttpContext.Cache的方式来读取Cache

///

private void btnHttpContextCacheLoad_Click(object sender, System.EventArgs e)

...{

if (HttpContext.Current.Cache[cacheKey] == null)

...{

cacheContent = "No Cache";

}

else

...{

cacheContent = (string)HttpContext.Current.Cache[cacheKey];

}

lblCacheContent.Text = cacheContent;

}

通过这个例子可以很容易证明:

HttpContext.Cache保存的Cache,HttpContext.Cache和HttpRuntime.Cache都可以读取。

HttpRuntime.Cache保存的Cache,HttpContext.Cache和HttpRuntime.Cache都可以读取。

无论是哪个用户通过什么方式对Cache的改变,其他用户无论用什么方式读取的Cache内容也会随之变。

责任编辑:admin
相关文章