/ServiceStackRedisCache

Distributed cache implementation of Microsoft.Extensions.Caching.Distributed.IDistributedCache using ServiceStack.Redis.

Primary LanguageC#Apache License 2.0Apache-2.0

ServiceStackRedisCache

Distributed cache implementation of Microsoft.Extensions.Caching.Distributed.IDistributedCache using ServiceStack.Redis.

Install Package

https://www.nuget.org/packages/ServiceStackRedisCache or https://www.nuget.org/packages/Microsoft.Extensions.Caching.ServiceStackRedis

Configure

Startup.cs

public void ConfigureServices(IServiceCollection services)
{
    services.AddDistributedServiceStackRedisCache("redis");
}

appsettings.json

{
  "redis": {
    "Host": "xxx",
    "Password": "xxx"
  }
}