mvcdonutcaching
mvcdonutcaching copied to clipboard
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 requ...
Subcontrollers – the Html.Action() helper — are not included in the current beta of MVC 6. Instead, MVC 6 includes an alternative technology called View Components. More info: http://stephenwalther.com/archive/2015/02/24/top-10-changes-in-asp-net-5-and-mvc-6 number...
Hi, I am facing this problem while implementing Donut caching. **Filtering is not allowed. (System.Web.HttpResponse.set_Filter)** **Stack Trace:** at System.Web.HttpResponse.set_Filter(Stream value) at Microsoft.VisualStudio.Web.PageInspector.Runtime.Tracing.PageInspectorHttpModule.OnPostRequestHandlerExecute(Object sender, EventArgs e) at System.Web.HttpApplication.SyncEventExecutionStep.System.Web.HttpApplication.IExecutionStep.Execute() at System.Web.HttpApplication.ExecuteStep(IExecutionStep step,...
``` public abstract class AbstractProtocolController : Controller { ... [DonutOutputCache(Duration = 300, VaryByParam = "id", Location = OutputCacheLocation.Server)] public ActionResult Detail(int id) { ... } ... } ``` This abstract...
i have following route attributes > [Route("topics/{character}/{slug}-names-p{page:int}")] > [Route("topics/{character}/{slug}-names")] but it shows the page 2 as empty. if i remove the route for paging. then the url is ?page=2, it...
i want to change the duration of DonutOutputCache attribute from database record. so i just write a custom outputcache which is childof DonutOutputCacheAttribute : public class CmsOutputCache : DonutOutputCacheAttribute {...
Hi After a few quick tests, I believe the cache duration is fixed rather than sliding. Can you confirm this? Also, is there a way to change this policy through...
And application just return white blank page. Here is full text of exception: System.Web.HttpException (0x80004005): Filtering is not allowed.\r\n at System.Web.HttpResponse.set_Filter(Stream value)\r\n at Microsoft.VisualStudio.Web.PageInspector.Runtime.Tracing.ArteryFilter.InstallOnResponse(HttpResponse response)\r\n at Microsoft.VisualStudio.Web.PageInspector.Runtime.Tracing.PageInspectorHttpModule.OnPostRequestHandlerExecute(Object sender, EventArgs e)\r\n...
Firstly - MVC Donut Cache is excellent, thanks for releasing. I'm having an issue understanding how cookies are meant to be handled with respect to the output cache. Let's say...
I'm using this package for the first time with Umbraco 7.3.1. The DonutOutputCache attribute is on a controller which is registered as the default controller in the application. I also...
Hi, I've just implement MVCdonutcaching for my web apps. Everytime (~20-30 times) I browse app with donutcaching enable, server was freeze for a few secs then continue to work. But...