asp.net mvc 缓存

webConfig 里面配置缓存时间

<caching>
<outputCacheSettings>
<outputCacheProfiles>
<add name="Long" duration="360"/>
<add name="Short" duration="5"/>
</outputCacheProfiles>

</outputCacheSettings>
</caching>

[OutputCache(CacheProfile = ("Long"))]

 [OutputCache(Duration = 60,Location = OutputCacheLocation.Client)]  在什么位置坐缓存

原文地址:https://www.cnblogs.com/zhtbk/p/4801610.html