November Happy Hour will be moved to Thursday December 5th.
AI OnAI Off
November Happy Hour will be moved to Thursday December 5th.
I know good blog post from Jon:
http://jondjones.com/how-to-implement-redis-with-episerver-easily/
Check out this blogpost as well http://bergdaniel.se/azure-appfabric-cache-with-episerver-cms
BR,
Marija
I finally got around to implementing a custom cache provider. I implemented my own version of
ISynchronizedObjectInstanceCache
I wired it up by doing:
context.Container.Configure(x => { x.For<ISynchronizedObjectInstanceCache>().Use<RedisRuntimeCacheProvider>(); });
But when the application starts I get an error in structuremap:
StructureMapBuildException: Error while building type EPiServer.Core.ContentCacheRemover
Anyone got any experience with this?
@Erik: Did you get it to work with Redis? We're working on it our selves but are currently stuck on how to serialize Episerver's objects.
Is it possible to put EpiServer cache in a cache provider like Redis?
Can I write a custom provider for the EpiServer cache?