Solr停止词不起作用

时间:2012-06-27 17:43:59

标签: search solr stop-words

我正在使用Solr 3.6进行预测搜索。 我需要Solr忽略单词“con”(带有空格),这意味着西班牙语中的“with” 我添加了solr.StopFilterFactory:

<filter class="solr.StopFilterFactory"
                ignoreCase="true"
                words="stopwords.txt"
                enablePositionIncrements="true"    // I also tried with "false"
                />

我的文件只包含“con”(不带引号)

但是当我搜索“Departamento con parrilla”时,Solr没有返回任何内容,我需要它返回“Departamento parrilla”,忽略查询中的“con”一词

我希望自己明白了。

非常感谢!!!!!

1 个答案:

答案 0 :(得分:0)

这是我的错误,我没有将正确的FieldType分配给我想要过滤的字段。