Lucene - Solr 版本兼容性
我有一个编写 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
作为 Solr 和Lucene 是同一项目的一部分。建议您使用相同的 Solr 和 Lucene 3.5 版本。
Lucene 版本之间的索引格式肯定发生了变化,如果是这样,索引肯定会不兼容。
但是,当您使用 Lucene 构建索引并通过 Solr 公开它时,您可以检查在 solrconfig.xml 中相应设置 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.