Has anyone used distributed SQL caching in .Net 4.7.2 ? I have seen many sample code for SQL caching with .Net Core but not with .Net Framework 4.7.2.
We are currently using Redis cache in the application and I am looking for a Redis replacement.
The content size of the data I want to cache is less than 512 MB.
Tried installing Microsoft.Extensions.Caching.Distributed from the nuget package manager but not sure if it will work with .net framework 4.7.2
4