Skip to content

Latest commit

 

History

History
27 lines (21 loc) · 556 Bytes

README.md

File metadata and controls

27 lines (21 loc) · 556 Bytes

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"
  }
}