无状态会话线程安全吗?

发布于 2024-11-26 08:02:23 字数 98 浏览 3 评论 0原文

我知道 ISession 不是线程安全的。 IStatelssSession 也不是线程安全的吗?我想答案是否定的。我进行了快速搜索,但没有找到这方面的参考。

谢谢。

I know ISession is not thread safe. Is IStatelssSession also not thread safe? I guess the answer is no. I did a quick search but didn't find a reference for this.

Thanks.

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

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

发布评论

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

评论(1

自由范儿 2024-12-03 08:02:23

StatelessSessionImpl 拥有一个 ConnectionManager,其中包含一个 IDbConnection - SqlConnection 不是线程安全的,因此不会。

虽然NH中继代码文档没有具体说明是否是。

编辑:该代码还显示没有线程同步,并且它还包含一个 ITransaction。

The StatelessSessionImpl holds a ConnectionManager which holds an IDbConnection - SqlConnection is not thread-safe, so that would be no.

Although the NH trunk code documentation does not specific whether or not it is.

Edit: The code also shows no thread synchronization and it also holds an ITransaction.

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