Redis store - Aguafrommars/DynamicAuthProviders GitHub Wiki
To use the Redis store instead of EntityFramework:
- add a package reference to
Aguacongas.AspNetCore.Authentication.Redisin your project. - use one of
AddRedisStoreextension method to setup your repository.
var dynamicBuilder = authBuilder
.AddDynamic<SchemeDefinition>()
.AddRedisStore("localhost:6379");