812 Views
A while ago I wrote about Object caching in .NET 4. I think that the Object Caching in .NET 4 is a great tool to use for caching and literally takes minutes to get up and running. However, one of the downsides of using the System.Runtime.Caching in .NET 4 is that every time your application pool recycles in IIS, you lose the objects in cache. The same happens if you make a change to your web.config or redeploy your application.
1 comments
dpeterson
9/27/2011 9:52:54 AM
Thanks for the quick walkthrough, could you expand on why you chose EnyimMemcached as opposed to the myriad of other libraries for Memcached out there? I've thought about adding Memcached to my applications before but never got further than trying to figure out which library to use.