了解Solr MoreLikeThis结果

时间:2011-04-13 07:53:21

标签: solr lucene morelikethis

我正在学习使用Solr。

我正在学习使用MoreLikeThis。如果我做Query,就像这样

http://localhost:8080/solr/select/?q=terbang&indent=on&mlt=true&mlt.fl=entry

我得到更像这样的结果

<lst name="moreLikeThis"> 
 <result name="67244" numFound="0" start="0"/> 
 <result name="67250" numFound="0" start="0"/> 
 <result name="146" numFound="0" start="0"/> 
 <result name="3993" numFound="0" start="0"/> 
 <result name="11758" numFound="0" start="0"/> 
 <result name="14828" numFound="0" start="0"/> 
 <result name="20820" numFound="0" start="0"/> 
 <result name="23336" numFound="0" start="0"/> 
 <result name="24267" numFound="0" start="0"/> 
 <result name="24779" numFound="0" start="0"/> 
</lst> 

我真的不明白“name”属性的含义是什么。如果没有找到任何东西,为什么有许多不同名称的结果?

1 个答案:

答案 0 :(得分:0)

name属性中的数字是结果中文档的唯一键。

相关问题