Introduction to FusionCache: Simplifying Caching in .NET

Hello everyone, and welcome to .NET Core Central! Today, I’m excited to introduce you to FusionCache, a powerful NuGet package that offers a facade on top of other distributed caches, along with several advanced features that can significantly simplify your caching strategy. In this post, we’ll cover the basics of using this Nuget package, and … Read more

Using Memcached as Distributed Cache in .NET Core

Using a distributed cache is key for building a high performant distributed system. Most of the time going to a distributed in-memory cache is better than hitting a centralized database. However, there are multiple options to choose from. But arguably the most popular ones are Memcached and Redis. In this post, I will explore using … Read more