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...
file:App_Start/RouteConfig.cs ``` c# namespace XXXXXXX { public class RouteConfig { public static void RegisterRoutes(RouteCollection routes) { routes.IgnoreRoute("{resource}.axd/{*pathInfo}"); routes.LowercaseUrls = true; routes.MapRoute( name: "Default", url: "{area}/{controller}/{action}/{id}", //defaults: new { controller =...
Hello, is it possible to cache response headers which are set via custom ActionFilter's? Our application has a ActionFilter which set's the `Content-Range` header by inspecting the view model. This...
Hi I have a child action for creating my footer which loads data from database. And I am loading it like this in my Layout.chtml @Html.Action("CreateFooter", "Home", true) In CreateFooter...
Sometimes, I don't know why, I got error "Child actions are not allowed to perform redirect actions." error message. This error comes from ˙@Html.Action("CookieLaw", "Home", true)˙ and CookieLaw action contains...
Allow the ability to use Azure Redis Caching along with MemoryCache. Steps: 1. Write interface around MemoryCacheProvider 2. Write implementation that uses azure 3. Put a switch in that allows...
Unit tests should be written to guaranty package stability. Chosen technology : xUnit.net
An ASP.NET demo project should be written featuring usage of MvcDonutCaching. - ~~Basic usage~~ - ~~Cache invalidation techniques~~ - Usage with DI container (Autofac) - Custom provider demo
@leen3o said : Be a great feature if I could clear keys that contain 'X' too. Would make it VERY flexible.
What do I do if I want to pick CacheProvider in runtime? In the standard implementation could override GetOutputCacheProviderName in Global.asax