ASP.NET 3.5 会话 ID 的大小是多少?

发布于 2024-07-21 16:45:33 字数 29 浏览 6 评论 0原文

是 32 位、64 位、128 位还是更大?

Is it 32 bit, or 64 bit or 128 bit or bigger?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(4

网名女生简单气质 2024-07-28 16:45:33

它既不是 int 也不是 guid; 来自 MSDN 帮助文件...

ASP.NET 会话标识符是一个随机生成的数字,编码为 24 个字符的字符串,由 a 到 z 的小写字符和 0 到 5 的数字组成。

It's neither int nor guid; from the MSDN help file...

The ASP.NET session identifier is a randomly generated number encoded into a 24-character string consisting of lowercase characters from a to z and numbers from 0 to 5.

柠檬心 2024-07-28 16:45:33

数据库中额外的 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.

呆萌少年 2024-07-28 16:45:33

我会选择 88 字节。 如果您查看 ASP.NET 状态数据库,就会发现它是这样定义的。

I would go with 88 bytes. If you look at the ASP.NET state database, that is how it is defined.

时光无声 2024-07-28 16:45:33

因为它是作为 System.Guid ValueType,它是一个128位整数,即16个字节。

Because it's generated as a System.Guid Valuetype, it's a 128-bit integer, which is 16 bytes.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文