Solr - 无法让词干和高程协同工作

时间:2014-07-16 07:49:00

标签: xml solr xsd nutch

Solr 4.6在CentOS 6.5上运行,由Solr新手运行(我!)。我们使用Nutch抓取我们的网站,然后将信息传递给Solr。

Elevate工作正常,直到我们添加了词干功能。

  • 我们的Solr配置文件:solrconfig.xml
  • 我们的Solr架构文件:schema.xml
  • 我们的搜索字符串是:

    [solrserver] / elevate?q = [搜索词]& fl = content%2Ctitle%2Curl& wt = json& indent = true& defType = edismax& qf = content%2Ctitle& stopwords = true& lowercaseOperators = true

我做错了什么?

感谢您的帮助。

1 个答案:

答案 0 :(得分:0)

如果您想要使用已分析的标记提升文档,则应使用相同的字段

<searchComponent name="elevator" class="solr.QueryElevationComponent">
<!-- pick a fieldType to analyze queries -->
<str name="queryFieldType">text</str>
<str name="config-file">elevate.xml</str>
</searchComponent>