使用 @OutputCache 指令时,您可以在 web.config 中定义缓存配置文件,如下所示:
<system.web>
<caching>
<outputCacheSettings>
<outputCacheProfiles>
<add name="myprofile" duration="30" enabled="true" varyByParam="myfield"/>
</outputCacheProfiles>
</outputCacheSettings>
</caching>
</system.web>
但是,在我的应用程序中,我有一些页面需要使用程序化缓存而不是声明性的,例如:
Response.Cache.SetExpires(DateTime.Now.AddSeconds(5));
Response.Cache.SetCacheability(HttpCacheability.Public);
Response.Cache.SetValidUntilExpires(true);
是否可以使用 Response.Cache 并利用 outputCacheProfiles?例如,
Response.Cache.ApplyCacheProfile("myprofile");