Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
使用 ITfoxtec.Identity.Saml2,有没有办法将 cookie 信息保留在 Redis 中,如果 pod 被销毁,会话将不存在所以有什么解决方案?
在 ASP.NET Core 中,您可以实现 ITicketStore 并在 ConfigureServices 中的 AddSaml2 方法中对其进行配置,如下所示:
services.AddSaml2(sessionStore: RedisTicketStore);
ITicketStore 提供了一种抽象的存储机制来保存服务器上的身份信息,同时只向客户端发送一个简单的标识符密钥。这最常用于缓解将大型身份序列化为 cookie 的问题。