Solr 的 MoreLikeThis 组件内部如何工作来获取结果?
我是 Apache Solr 的新手,目前正在探索/尝试使用 MoreLikeThis< /a> 作为搜索组件(而不是专用请求处理程序)。我发现很难清楚地理解它在内部如何工作以获得更像这样的结果?
例如,我尝试在名为 mytextcontentfield
的文档字段之一中搜索单词 java
:
并且我可以在 XML 响应中看到 moreLikeThis 以及 name
属性中文档的唯一键。
我的问题是,Solr 内部如何工作/匹配以根据搜索关键字 java
查找更多类似的文档?任何有好的例子的解释都值得赞赏。
I'm new to Apache Solr and am currently exploring/trying to make use of MoreLikeThis as a search component (instead of dedicated request handler). I'm finding difficult to understand clearly on how this works internally to get more-like-this results?
For example, I'm trying to search for the word java
in one of the document field named mytextcontentfield
:
and I could see moreLikeThis in the XML response with unique keys of the documents in name
attribute.
My questions here is, how does Solr internally work/match to find more-like-this documents based on the search keyword java
? Any explanation with good example are appreciated.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
看起来没有 Solr 文档详细解释此功能。
但不知何故,经过一些谷歌,设法找到一篇关于 How MoreLikeThis 的文章在 Lucene 中工作。
Looks there's no Solr documentation that explain this feature in detail.
But somehow, after some google, managed to find a write-up on How MoreLikeThis Works in Lucene.