Clear caches individually

Recently I was asked for an easy way to manually delete a cache entry key, so I decided to build a simple module that could be helpful for both developers and administrators who understand how cache is used; for instance, to invalidate Content Output Cache in EPiServer. This tool have the following: List all cache …

Continue reading Clear caches individually

Advertisement

Content Output Caching – Part 3

It is possible to easily cache the rendering of a web page using a custom condition by setting a custom string, which ASP.NET will vary the output by. To test it, you need to create a class that inherits from MvcOutputCacheAttribute. Take a look at the following example: public class VaryByBrowser : Verndale.OutputCache.Attributes.MvcOutputCacheAttribute { protected …

Continue reading Content Output Caching – Part 3