什么是<缓存>web.config 中的节点?缓存>
我们的看起来像这样:
<caching>
<profiles>
<add extension=".css" policy="CacheUntilChange" kernelCachePolicy="DontCache" />
<add extension=".gif" policy="CacheUntilChange" kernelCachePolicy="DontCache" />
<add extension=".jpg" policy="CacheUntilChange" kernelCachePolicy="DontCache" />
</profiles>
</caching>
我想知道因为我们的生产网站没有这个节点,但我们本地的开发 web.config 有。
Ours looks like this:
<caching>
<profiles>
<add extension=".css" policy="CacheUntilChange" kernelCachePolicy="DontCache" />
<add extension=".gif" policy="CacheUntilChange" kernelCachePolicy="DontCache" />
<add extension=".jpg" policy="CacheUntilChange" kernelCachePolicy="DontCache" />
</profiles>
</caching>
I am wondering because our production website does not have this node, but our local dev web.config does.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
该元素允许您启用或禁用 Internet 信息服务 (IIS) 7 应用程序的页面输出缓存。此元素还允许您配置 IIS 是否在用户模式、内核模式或两者下缓存页面输出,以及您想要施加的输出缓存限制(如果有)。
该元素还包含一个元素,该元素包含可应用于 ASP.NET 页面的输出缓存设置的集合。
请参阅:
http://www.iis.net/ConfigReference/system.webServer/caching
http://msdn.microsoft.com/en-us/library/ms178597.aspx
http://msdn.microsoft.com/en-us/library/ms178606.aspx
http://www.asp.net/moving-to-aspnet-20/tutorials/caching
The element allows you to enable or disable page output caching for an Internet Information Services (IIS) 7 application. This element also allows you to configure whether IIS caches page output in user mode, kernel mode, or both and what, if any, output caching limits you want to impose.
The element also contains a element that contains a collection of output cache settings that you can apply to ASP.NET pages.
Refer to:
http://www.iis.net/ConfigReference/system.webServer/caching
http://msdn.microsoft.com/en-us/library/ms178597.aspx
http://msdn.microsoft.com/en-us/library/ms178606.aspx
http://www.asp.net/moving-to-aspnet-20/tutorials/caching
对我来说,情况应该相反,您希望在生产中缓存,而不一定在开发中缓存。
缓存的详细信息。
To me it should be the opposite, you want to cache on production and not necessarily on development.
The details for caching.