I've been looking into installing CacheCow ( https://github.com/aliostad/CacheCow ) , by just applying the nuget package and then adding:
GlobalConfiguration.Configuration.MessageHandlers.Add(new CacheCow.Server.CachingHandler(GlobalConfiguration.Configuration));
to my global config file. Once i do this though, none of my grids will refresh properly, they all cache old values regardless of new data being made available or not. I've used the header:
[OutputCache(NoStore = true, Duration = 0, VaryByParam = "*")]
public JsonResult _GetProjectList([DataSourceRequest] DataSourceRequest request)
{
return Json(data.ToDataSourceResult(request, ModelState), JsonRequestBehavior.AllowGet);
}
for outputcache at the top, but that doesn't seem to help. Anyone have any experience using cachecow with kendo datasources, and how to get them to work with each other?