ASP.NET 3.5 会话 ID 的大小是多少?
是 32 位、64 位、128 位还是更大?
Is it 32 bit, or 64 bit or 128 bit or bigger?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
是 32 位、64 位、128 位还是更大?
Is it 32 bit, or 64 bit or 128 bit or bigger?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(4)
它既不是 int 也不是 guid; 来自 MSDN 帮助文件...
It's neither int nor guid; from the MSDN help file...
数据库中额外的 8 个字符与代码中的字符相比,原因是应用程序 ID。 在数据库中,会话附加有 ASPStateTempApplications 表中的 tempApplicationID。 这就是为什么代码中有 24 个字符,数据库中有 32 个字符。
The reason for the extra 8 characters in the database vs what you get in code is the application id. In the database the session is appended with the tempApplicationID from ASPStateTempApplications table. This is why you get 24 characters in code, and 32 in the db.
我会选择 88 字节。 如果您查看 ASP.NET 状态数据库,就会发现它是这样定义的。
I would go with 88 bytes. If you look at the ASP.NET state database, that is how it is defined.
因为它是作为 System.Guid ValueType,它是一个128位整数,即16个字节。
Because it's generated as a System.Guid Valuetype, it's a 128-bit integer, which is 16 bytes.