.net 中参考令牌的数据存储是什么,它们存储在哪里?
What is data store for the Reference Tokens in .net, and where they are stored?
谁能解释一下下面句子中数据存储的含义及其位置?`
IdentityServer will store the contents of the token in a data store, where is the physical location?
句子取自这里:Reference Tokens.
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.
它可以存储在任何地方,由你来配置它。 Entity Framework 是存储提供程序的一个示例,通过包 IdentityServer4.EntityFramework
.
安装
谁能解释一下下面句子中数据存储的含义及其位置?`
IdentityServer will store the contents of the token in a data store, where is the physical location?
句子取自这里:Reference Tokens.
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.
它可以存储在任何地方,由你来配置它。 Entity Framework 是存储提供程序的一个示例,通过包 IdentityServer4.EntityFramework
.