求教现在做MVC有没有好的做缓存的插件,
由于数据量大,访问次数都是集中在那几个高热点的文章上,
所以最好是能根据更新时间,以及访问次数做缓存,
求高手赐教.
考虑memorycache或者是memcached
Cache
[OutputCache(CacheProfile = "CacheSecond")]
public ActionResult Index() 这样设置,效果明显。
web.config配置
<system.web>
<caching>
<outputCacheSettings>
<outputCacheProfiles>
<add name="CacheSecond" duration="30" varyByParam="none"/>
</outputCacheProfiles>
</outputCacheSettings>
</caching>
考虑memorycache或者是memcached
mongodb