SolrJ 线程安全

发布于 2024-09-12 03:22:59 字数 114 浏览 3 评论 0 原文

我在 Web 应用程序中使用 CommonsHttpSolrServer。在多个请求中重用 CommonsHttpSolrServer 是否安全,还是应该为每个请求实例化一个新对象?无法在 API 文档中找到答案。

I am using CommonsHttpSolrServer in a Web Application. Is it safe to reuse the CommonsHttpSolrServer over multiple requests or should I instantiate a new object for each request? Could not find the answer in the API docs.

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

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

发布评论

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

评论(1

半窗疏影 2024-09-19 03:22:59

根据 文档 和源注释,SolrJ 是线程安全的。

不过,更新 solr 时要小心。根据 这篇文章,事务是按实例实现的,而不是按队列实现的。这意味着每个线程没有自己的隔离事务可以使用。回滚会将每个调用(无论发起线程如何)回滚到最后一次提交。

总的来说,这意味着您应该可以安全地使用任意数量的线程进行查询(使用相同的 CommonsHttpSolrServer)。但是,如果您希望利用回滚,则需要确保一次只有一个线程更新您的 solr 实例(无论对象分布如何)。

According to the documentation and the source comments, SolrJ is thread safe.

However, be careful when you update solr. According to this post, the transactions are implemented per instance, not per queue. This means that each thread does not have it's own isolated transaction to work with. Rollback will rollback every call (regardless of originating thread) to the last commit.

Overall, this means that you should be safe to query (using the same CommonsHttpSolrServer) with as many threads as you like. However, if you wish to take advantage of rollback, you will need to ensure only one thread is updating your solr instance at a time (regardless of object distribution).

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