-
-
Notifications
You must be signed in to change notification settings - Fork 9
Redis store
Olivier Lefebvre edited this page Dec 23, 2018
·
1 revision
To use the Redis store instead of EntityFramework:
- add a package reference to
Aguacongas.AspNetCore.Authentication.Redis
in your project. - use one of
AddRedisStore
extension method to setup your repository.
var dynamicBuilder = authBuilder
.AddDynamic<SchemeDefinition>()
.AddRedisStore("localhost:6379");