我正在尝试使用Dismax Query Parser从 solr 4.5 的索引数据中获取自由文本搜索结果,但没有返回结果,也没有像这样的简单查询错误:
http://localhost:9999/solr/products/select?q=cuir&qf=text_fr&defType=dismax
这些文件存在于索引中:
{ id: 1, label: "Sac à main en cuir" }
{ id: 2, label: "Sac à main en cuir rouge" }
我的 schema.xml 是:
..
<field name="id" type="int" indexed="true" stored="true" required="true" />
<field name="label" type="string" indexed="true" stored="true" required="true" />
...
<copyField source="label" dest="label_fr"/>
<dynamicField name="*_fr" type="text_fr" indexed="true" stored="false" />
...
<fieldType name="text_fr" class="solr.TextField" positionIncrementGap="100">
<analyzer>
<tokenizer class="solr.KeywordTokenizerFactory"/>
<filter class="solr.LowerCaseFilterFactory"/>
<filter class="solr.StopFilterFactory" ignoreCase="true" words="stopwords_french.txt" enablePositionIncrements="true" />
<filter class="solr.SnowballPorterFilterFactory" language="French"/>
<filter class="solr.CollationKeyFilterFactory" language="fr" strength="primary" />
</analyzer>
</fieldType>
并在 solrconfig.xml
...
<requestHandler name="/select" class="solr.SearchHandler">
<lst name="defaults">
<str name="echoParams">explicit</str>
<int name="rows">10</int>
<str name="defType">dismax</str>
</lst>
...
那么有什么想法有什么问题吗?为什么没有结果?