0

我有一个不断更新的 XML 文件,但是无论我做什么,我都无法获得更新的副本。我总是在几个小时内看到它的缓存版本。有什么办法可以关闭 xml 的缓存?我正在使用天蓝色网站。

4

1 回答 1

0

在这个答案中,我假设您正在谈论输出缓存。为了禁用 *.xml 的输出缓存,只需在 web.config 中添加一个缓存配置文件:

<configuration>
   <system.webServer>
      <caching>
         <profiles>
            <add extension=".xml" policy="DontCache" kernelCachePolicy="DontCache" />
         </profiles>
      </caching>
   </system.webServer>
</configuration>
于 2012-11-25T21:19:40.040 回答