Lucene - Solr 版本兼容性

发布于 2025-01-06 19:42:59 字数 154 浏览 0 评论 0原文

我有一个编写 lucene 索引的应用程序,它基于 lucene 2.3.0。

我可以使用 solr 3.5.0 读取这些索引并执行分布式搜索吗?或者我应该使用较低版本的 solr,以便索引读取器与索引写入器兼容。

如果有之前接触过的人可以提供建议,那就太好了!

I have an app the writes lucene indexes and is based on lucene 2.3.0.

Can I read those indexes using solr 3.5.0 and perform a distributed search? Or should I use a lower version of solr, so that the index reader is compatible with the index writer.

Would be great if somebody with prior exposure can advice!

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

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

发布评论

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

评论(1

想念有你 2025-01-13 19:42:59

作为 Solr 和Lucene 是同一项目的一部分。建议您使用相同的 Solr 和 Lucene 3.5 版本。

Lucene 版本之间的索引格式肯定发生了变化,如果是这样,索引肯定会不兼容。

但是,当您使用 Lucene 构建索引并通过 Solr 公开它时,您可以检查在 solrconfig.xml 中相应设置 luceneMatchVersion 参数,看看它是否有效。

<luceneMatchVersion>LUCENE_30</luceneMatchVersion>

As the Solr & Lucene are part of the same project. its recommended you use the same Solr and Lucene 3.5 version.

The index format must have changed between the Lucene releases and the indexes will surely be incompatible, if so.

But as you are building the index using Lucene and exposing it through Solr, you can check setting the luceneMatchVersion parameter accordingly in solrconfig.xml to see if it works.

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