作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我目前正在寻求基于我的索引中的多个字段来实现更多类似的功能。
我目前的配置如下:干草堆 | PySolr |太阳能
对于这篇文章,我使用 PySolr 并将参数传递给 more_like_this 函数。响应找到文档,但没有找到任何相关结果。这是为什么呢?
这是我点击的网址:
http://localhost:8080/solr/mlt?q=django_id:12123412&mlt.fl=industry_ids,loc_state,amount,sector_id&mlt.interestingTerms=details
这是我从 Solr 得到的回复:
<response>
<object type="{XXXXXX-0F1D-4F28-AAA2-XXXXXXXXXXX}" cotype="cs" id="cosymantecbfw" style="width: 0px; height: 0px; display: block;"/>
<lst name="responseHeader">
<int name="status">0</int>
<int name="QTime">24</int>
</lst>
<result name="match" numFound="1" start="0">
<doc>...</doc>
</result>
<result name="response" numFound="0" start="0"/>
<lst name="interestingTerms"/>
</response>
solrconfig.xml
<!-- More Like This -->
<requestHandler name="/mlt" class="solr.MoreLikeThisHandler">
</requestHandler>
schema.xml
<field name="award_amount" type="sfloat" indexed="true" stored="true" multiValued="false" termVectors="true" />
<field name="estatus" type="slong" indexed="true" stored="true" multiValued="false" termVectors="true"/>
<field name="loc_state" type="string" indexed="true" stored="true" multiValued="false" termVectors="true"/>
<field name="orgtype_id" type="string" indexed="true" stored="true" multiValued="false" termVectors="true" />
<field name="sector_id" type="string" indexed="true" stored="true" multiValued="false" termVectors="true"/>
<field name="industry_ids" type="string" indexed="true" stored="true" multiValued="true" termVectors="true" />
<field name="award_amount_exact" type="sfloat" indexed="true" stored="true" multiValued="false" termVectors="true" />
<field name="sector_id_exact" type="string" indexed="true" stored="true" multiValued="false" termVectors="true"/>
<field name="amount_exact" type="sfloat" indexed="true" stored="true" multiValued="false" termVectors="true"/>
任何帮助将不胜感激!
最佳答案
您的文本字段必须具有 text
类型,它会处理它们以使它们可搜索。 string
字段按原样存储和查询,因此不可搜索,使其对 MLT 无用。
如果您想存储与 text
和 string
相同的数据(例如,分面),请引用 copy fields。
我看到您还打算找到最接近我们查询的数字。 MLT 不适合这种情况。您想为此编写一个函数查询。 SolR : More Like This on number fields
关于Solr More Like This (MLT) 不返回结果,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9304464/
我是一名优秀的程序员,十分优秀!