Distributed cache implementation of Microsoft.Extensions.Caching.Distributed.IDistributedCache using ServiceStack.Redis.
https://www.nuget.org/packages/ServiceStackRedisCache or https://www.nuget.org/packages/Microsoft.Extensions.Caching.ServiceStackRedis
Startup.cs
public void ConfigureServices(IServiceCollection services)
{
services.AddDistributedServiceStackRedisCache("redis");
}
appsettings.json
{
"redis": {
"Host": "xxx",
"Password": "xxx"
}
}