Reputation: 127
Who can explain what means data store and where it is located in the sentence below?`
IdentityServer will store the contents of the token in a data store, where is the physical location?
The sentence is taken from here: Reference Tokens.
Upvotes: 0
Views: 159
Reputation: 151594
Docs:
IdentityServer is designed for extensibility, and one of the extensibility points is the storage mechanism used for data that IdentityServer needs. This quickstart shows how to configure IdentityServer to use EntityFramework (EF) as the storage mechanism for this data (rather than using the in-memory implementations we had been using up until now).
[...]
These stores are modeled with interfaces, and we provide an EF implementation of these interfaces in the IdentityServer4.EntityFramework Nuget package.
It can store anywhere, it's up to you to configure it. Entity Framework is one example of a storage provider, installed through the package IdentityServer4.EntityFramework
.
Upvotes: 3