我正在使用 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”一词
我希望我让自己明白了。
非常感谢!!!!!