I'm using the hybrid framework and I've upgraded one of my sites to 7.2.1.
Now, all donut output caching has stopped working.
My global.asax is this...
public class Global : Umbraco.Web.UmbracoApplication
{
public override string GetVaryByCustomString(HttpContext context, string custom)
{
if (custom.ToLower() == "url")
{
return "url=" + context.Request.Url.AbsoluteUri;
}
return base.GetVaryByCustomString(context, custom);
}
}
and I'm using a cache profile that looks like this...
mvc donut output caching
I'm using the hybrid framework and I've upgraded one of my sites to 7.2.1. Now, all donut output caching has stopped working. My global.asax is this...
and I'm using a cache profile that looks like this...
I'm using 1.3.0 of mvcdonutcaching. I'm using the cache profile on specific actions of controllers like this...
Can anyone suggest anything else?
For anyone that comes across this post. Here is what I'd suggest is the update (and have working)...
Note the addition of enableOutputCache = true.
is working on a reply...