Calling all developers! We invite you to provide your input on Feature Experimentation by completing this brief survey.
Calling all developers! We invite you to provide your input on Feature Experimentation by completing this brief survey.
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?