我想在 MVC 网站上启用缓存,有几个建议 http://www.iis.net/configreference/system.webserver/staticcontent/clientcache 关于使用 IIS 管理或 Web.config 添加条目,但我是使困惑。
1) 这两个有什么区别,我可以只选择 IIS Content Expiration 而不是 Web.config 设置:
<configuration>
<system.webServer>
<staticContent>
<clientCache cacheControlMode="UseMaxAge" cacheControlMaxAge="7.00:00:00" />
</staticContent>
</system.webServer>
</configuration>
2) 什么是输出缓存,它与内容过期有何不同?
提前致谢。