Skip to content

Instantly share code, notes, and snippets.

@umayeras
Created October 14, 2020 12:33
Show Gist options
  • Save umayeras/a9ca0b709932a1ac06f3307aa565e2a8 to your computer and use it in GitHub Desktop.
Save umayeras/a9ca0b709932a1ac06f3307aa565e2a8 to your computer and use it in GitHub Desktop.
public void ConfigureServices(IServiceCollection services)
{
var settings = configuration.GetSection(SectionNames.RedisSettings).Get<RedisSettings>();
services.AddDistributedRedisCache(option =>
{
option.Configuration = settings.Uri;
option.InstanceName = settings.Instance;
});
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment