У меня возникла проблема, когда выходное кэширование, похоже, не работает на моем веб-сайте ASP.NET MVC 4 (EPiServer 7).
У меня есть следующий профиль выходного кэша в моем web.config
:
<caching>
<outputCacheSettings>
<outputCacheProfiles>
<add name="PageOutput" enabled="true" duration="300" varyByParam="*" location="ServerAndClient" />
</outputCacheProfiles>
</outputCacheSettings>
</caching>
И вот моя конфигурация кэширования вывода для статических ресурсов:
<caching>
<profiles>
<add extension=".gif" policy="DontCache" kernelCachePolicy="CacheUntilChange" duration="0.00:01:00" location="Any" />
<add extension=".png" policy="DontCache" kernelCachePolicy="CacheUntilChange" duration="0.00:01:00" location="Any" />
<add extension=".js" policy="DontCache" kernelCachePolicy="CacheUntilChange" duration="0.00:01:00" location="Any" />
<add extension=".css" policy="DontCache" kernelCachePolicy="CacheUntilChange" duration="00:01:00" location="Any" />
<add extension=".jpg" policy="DontCache" kernelCachePolicy="CacheUntilChange" duration="0.00:01:00" location="Any" />
<add extension=".jpeg" policy="DontCache" kernelCachePolicy="CacheUntilChange" duration="00:01:00" location="Any" />
</profiles>
</caching>
И мой контроллер украшен атрибутом кэша вывода следующим образом:
[OutputCache(CacheProfile = "PageOutput")]
public class HomePageController : BasePageController<HomePage>
{ ...}
Я смотрю следующие счетчики в perfmon, но не вижу, чтобы они увеличивались, как ожидалось, когда я посещаю домашнюю страницу:
-
\ASP.NET Apps v4.0.30319(__Total__)\Output Cache Entries
-
\ASP.NET Apps v4.0.30319(__Total__)\Output Cache Hits
Я также тестировал с помощью tinyget
следующим образом:
tinyget -srv:mywebsite -uri:/ -threads:1 -loop:20
Любые советы будут очень признательны!