Thursday, February 25, 2016
Recently I've been looking at implementing caches in Sitecore, and in my current project I've had to do this a few times; let's have a look at my general pattern. I've just been caching strings; although other objects can be cached, mostly all I need are strings or, sometimes a few IDs.First, I defined my cache class:public class MyCache : CustomCache{public MyCache() : base("Example.MyCache", ...