Reputation: 664
Reading the article of caching in ASP.Net Core I can see that an implementation of the IDistributedCache as in-memory cache exists:
Where can I find this implementation?
Context:
I want to implement the IDistributedCache but use it as in-memory cache at the moment. Later we will switch to Redis using the same interface.
Upvotes: 4
Views: 4657
Reputation: 664
Okay, I think I found it.
In Microsoft.Extensions.Caching.Distributed:
Upvotes: 5