Lucene MoreLikeThis 无法解析为类型
我正在尝试使用 lucene 中的 MoreLikeThis 类,如“Lucene in action”书中所述,但该类似乎不存在:/
我正在使用 lucene-core-2.9.4.jar,正常索引和搜索工作正常。 我查看了 jar 内部(以及 3.xx 版本),但里面没有这样的类,我错过了什么?
I'm trying to use MoreLikeThis class from lucene as described in "Lucene in action" book, but that class does not seem to exist :/
I'm using lucene-core-2.9.4.jar, normal indexing and searching works fine.
I have looked iniside the jar (and the 3.x.x version), but there is no such class inside, what am I missing?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您是否指的是 MoreLikeThis 类?它应该位于 lucene-queries-2.9.4.jar 内。查看 Lucene 二进制下载的 contrib/queries 文件夹下。
Are you referring to the MoreLikeThis class? It should be inside lucene-queries-2.9.4.jar. Look under the contrib/queries folder of your Lucene binary download.
转到此页面:http://www.manning.com/hatcher2/ 并下载源代码。 MoreLikeThis 类不是 lucene 本身的一部分,而是与本书相关的示例类
Go to this page: http://www.manning.com/hatcher2/ and download the source code. The class MoreLikeThis is not part of lucene itself, rather an example class related to the book