ASP.NET OutputCache - 缓存将存储在哪里 id Location=“Any”
我想在我的网站中使用 ASP.NET 输出缓存。如果我选择 Location="Any" 缓存将存储在哪里?
I want to use ASP.NET Output cache in my website. If i select Location="Any" where will the cache be stored?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
输出缓存可以位于浏览器客户端(发出请求的位置)、参与请求的代理服务器(或任何其他服务器)或处理请求的服务器上。
有关详细信息,您可以参考以下链接:
http://msdn.microsoft.com/en-us/library/system.web.ui.outputcachelocation(v=VS.100).aspx
The output cache can be located on the browser client (where the request originated), on a proxy server (or any other server) participating in the request, or on the server where the request was processed.
for more information you can refere to the following link:
http://msdn.microsoft.com/en-us/library/system.web.ui.outputcachelocation(v=VS.100).aspx