StackExchangeRedisOutputCacheProvider for AspNetCore.CacheOutput package
$ dotnet add package AspNetCore.CacheOutput.RedisStackExchange Redis cache provider implementation for AspNetCore.CacheOutput
Install core package: Install-Package AspNetCore.CacheOutput
Install package with Redis cache provider implementation: Install-Package AspNetCore.CacheOutput.Redis
In "Startup" class "ConfigureServices" method register additional services:
services.AddRedisCacheOutput(Configuration.GetConnectionString("<redis connection string name>"));
See https://github.com/Iamcerba/AspNetCore.CacheOutput for more details.