Top

How to implement a distributed cache in ASP.Net Core

April 3, 2018

Via: InfoWorld

ASP.Net Core provides support for various types of caching. In addition to in-memory caching and response caching, it provides built-in support for distributed caching. In one of my previous articles here, I discussed in-memory caching in ASP.Net Core. In this article we will examine how we can work with distributed caching in ASP.Net Core. We will discuss both supported implementations, i.e., using Redis as well as SQL Server as the cache stores.

What is a distributed cache

Distributed caches are used to improve the performance and scalability of applications. Typically, a distributed cache is shared by multiple application servers.

Read More on InfoWorld