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
IDistributedCacheand works on .NET Framework. Does it work for your needs? However, Redis may be preferable for this scenario - any specific reason to move from Redis to SQL Server? (for context: I help maintain both the Redis and SQL Server libraries for this)IDistributedCacheimpl to talk to that, which is "preview" for another 2 months, but works on .NET Framework). But back to my question: does the SqlServer package I cited work for you?