In-Memory Caching with Foundatio
I was recently looking for a simple in-memory caching library that sat on top of ConcurrentDictionary. I didn’t have many requirements other than it needing to be thread safe and and had some expiry policy built-in. I’ve used .NET MemoryCache before, but figured there likely had to be something simple else already built. My search led me to Foundatio: Pluggable foundation blocks for building distributed apps. Turns out Foundatio was created for building Exceptionless. I’ve blogged about Exceptionless before, which is a real-time error and logging .NET and Javascript. Basics Caching in it’s various forms (in-memory, distributed) is simply about storing… Read More »In-Memory Caching with Foundatio