ASP.NET Core
Install-Package StackExchange.Redis.Extensions.AspNetCoredotnet add package StackExchange.Redis.Extensions.AspNetCore<PackageReference Include="StackExchange.Redis.Extensions.AspNetCore" Version="6.1.0" />paket add StackExchange.Redis.Extensions.AspNetCoreStartup.cs
public void ConfigureServices(IServiceCollection services)
{
// Retrieve the configuration fro your json/xml file
services.AddStackExchangeRedisExtensions<NewtonsoftSerializer>(conf);
}Ipublic void Configure(IApplicationBuilder app, IWebHostEnvironment env)
{
app.UserRedisInformation();
}Last updated