HttpRuntime.Cache 與 HttpContext.Current.Cache

一、HttpRuntime.Cache是應用程序級別的,spa

二、而HttpContext.Current.Cache是針對當前WEB上下文定義的。code

三、這二個都是調用的同一個對象,不一樣的是:HttpRuntime下的除了WEB中可使用外,非WEB程序也可使用。對象

注意:是同一個對象。
好比:blog

Page.Cache["aa"] = "test";
var aa=HttpRuntime.Cache["aa"];

aa的值也是"test"class

相關文章
相關標籤/搜索