什么是<缓存>web.config 中的节点?

发布于 2024-11-06 23:08:00 字数 483 浏览 0 评论 0原文

我们的看起来像这样:

    <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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

羁拥 2024-11-13 23:08:00

该元素允许您启用或禁用 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

新雨望断虹 2024-11-13 23:08:00

对我来说,情况应该相反,您希望在生产中缓存,而不一定在开发中缓存。

缓存的详细信息。

To me it should be the opposite, you want to cache on production and not necessarily on development.

The details for caching.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文