ASP.NET 会话 ID - 在服务器之间唯一
进程内会话的会话 ID 是否可以跨服务器重复?例如,我们使用 2 个 IIS 服务器 - IIS 服务器是否有可能创建相同的会话 ID?我们正在使用 NLB 服务器和粘性会话。
Is session id repeatable across servers for in-proc session? For example we are using 2 IIS servers - is there any chance that the IIS servers could create the same session id? We are using NLB servers and sticky session.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
看看将会话状态存储在数据库中,该数据库可以在多个服务器之间共享。
Look into storing the session state in a database which can be shared between multiple servers.