Caching data
Caching is one of the most fundamental systems to improve your application's performance and scalability. ABP extends ASP.NET Core's distributed caching system and makes it compatible with other features of ABP Framework, such as multi-tenancy.
Distributed caching is essential if you run multiple instances of your application or have a distributed system, such as a microservice solution. It provides consistency between different applications and allows the sharing of cached values. A distributed cache is typically an external, standalone application, such as Redis and Memcached.
It is suggested to use the distributed caching system even if your application has a single running instance. Don't worry about the performance since the default implementation of distributed cache works in memory. That means it is not distributed unless you explicitly configure a real distributed cache provider, such as Redis.
Distributed Caching in ASP.NET Core
This...