ASP.NET MVC Extensible Donut Caching brings donut caching to ASP.NET MVC 3 and later. The code allows you to cache all of your page apart from one or more Html.Actions which can be executed every request. Perfect for user specific content.
My action is decorated with
[DonutOutputCache(CacheProfile = "Indexes")]
And these are my cache profiles:
Sometimes I still get different results in different browsers. Where should I look for problems? During test this never happened. I'm running a multitenant app, but it only happens for a few it seems.
My action is decorated with [DonutOutputCache(CacheProfile = "Indexes")]
And these are my cache profiles:
Sometimes I still get different results in different browsers. Where should I look for problems? During test this never happened. I'm running a multitenant app, but it only happens for a few it seems.