jruby REXML 和 REXML::Document 线程安全吗?

发布于 2024-11-28 12:45:13 字数 60 浏览 0 评论 0原文

我只是想知道 REXML 库(尤其是 REXML::Document)在 jruby 中是否是线程安全的?

I just wonder whether REXML library (especially REXML::Document) is thread safe in jruby?

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

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

发布评论

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

评论(1

软的没边 2024-12-05 12:45:13

它不是完全线程安全的:REXML 类中有一些类变量可以随时被多个线程修改(例如,Document::entity_expansion_limit)。然而,大多数代码是线程安全的(例如,没有自动加载);如果您不使用那些危险的叮咬,则可以毫无问题地使用它。

或者您可以使用 线程安全设计 (模错误)。

It is not perfectly thread-safe: there are some class variables in the REXML classes that could be modified at any time by more than one thread (e.g., Document::entity_expansion_limit). However, most of the code is thread safe (no autoloading, for example); if you are not using those dangerous bites, you can use it without any problem.

Or you could use Nokogiri that is thread-safe by design (modulo bugs).

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