Solr 查询仍然 return 结果与停用词
Solr query still return results with stopword
我在我的分析器中将 "porn" 设置为停用词,它在 Solr admin UI, Index和Query都过滤掉stopword,如下图:
Analysis screen with stop word "porn"
但是当我用那个词查询时,仍然返回了带有这个停用词的文档,
enter image description here
我很困惑,谁能告诉我为什么?提前致谢。
名称和text_ik是否具有相同的字段定义。如果是
查询
localhost:8983/solr/cntest2/select?q=porn
在默认字段中搜索(主要是文本字段)
尝试使用字段名称 localhost:8983/solr/cntest2/select?q=name:porn
我在我的分析器中将 "porn" 设置为停用词,它在 Solr admin UI, Index和Query都过滤掉stopword,如下图: Analysis screen with stop word "porn"
但是当我用那个词查询时,仍然返回了带有这个停用词的文档, enter image description here
我很困惑,谁能告诉我为什么?提前致谢。
名称和text_ik是否具有相同的字段定义。如果是
查询
localhost:8983/solr/cntest2/select?q=porn
在默认字段中搜索(主要是文本字段)
尝试使用字段名称 localhost:8983/solr/cntest2/select?q=name:porn