Working with ASP.NET Core IDistributedCache Provider for NCache

from blog Just Some Code, | ↗ original
As we learned last time, when I covered in-memory caching with ASP.NET Core, a cache is a storage layer between an application and an external resource (a database, for example) used to speed up future requests to that resource. In this post, let’s use ASP.NET Core IDistributedCache abstractions to write a data caching layer using NCache. 1....