无状态会话线程安全吗?
我知道 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
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.