How to set render caching timeout in sitecore 8.1?
I applied the code suggested in the link below, but didn't work.
http://www.reinoudvandalen.nl/blog/add-sliding-expiration-on-sitecore-rendering-cache/
I am also trying to add the code below to the controller action method, but still does not work.
RenderingContext.CurrentOrNull.Rendering.Caching.Timeout = new TimeSpan(0, 0, 10);
Is there any other way that I could try to set a timeout for each rendering?
source
share