我在阅读MSDN 文档中的这篇文章时遇到了它。我是缓存的新手,事实上,这是我读到的关于缓存的第一篇文章。你能简单解释一下吗?
问问题
3019 次
1 回答
9
简而言之,它是一个缓存配置文件,您可以在其中设置,web.config
而不必将设置应用于您想要使用缓存设置的每个动作或控制器:
在 web.config 中,您指定缓存配置文件的选项:
<system.web>
<compilation debug="true" targetFramework="4.5.1" />
<httpRuntime targetFramework="4.5.1" />
<caching>
<outputCacheSettings>
<outputCacheProfiles>
<add name="cp1" duration="30" location="Any" varyByHeader="user-agent" />
</outputCacheProfiles>
</outputCacheSettings>
</caching>
</system.web>
然后在任何你想使用配置文件的地方你都可以使用,例如
[OutputCache(CacheProfile="cp1")]
public ActionResult Index() {
//...
}
以上示例取自Adam Freeman 的 Apress Pro ASP.NET MVC 5 平台。我推荐它作为一本好书。
于 2016-09-23T19:50:03.333 回答