Azure Redis Cache on ASP.NET Core

redisThe use of cache can increase application performance by storing strategic data in memory instead of having to obtain data for every request. Often, getting information from external resources, as database or services, can degrade application response time.

In this post, I'll show how to use the Azure Redis Cache to enable the use of cache on distributed servers, allowing the cache to be shared to more than one server. Azure Redis uses the open source framework Redis to implement the distributed cache.

 

To learn more, please take a look at the entire post at:

Azure Redis Cache on ASP.NET Core