在哪里可以找到当我们选择_english_
作为Stop Token Filter文档中提到的语言时使用的ElasticSearch 6.3中的停用词的最新列表。
答案 0 :(得分:0)
Elasticsearch为此使用了Lucene默认值。直到大约一周前,它一直位于https://github.com/apache/lucene-solr/blob/branch_7x/lucene/core/src/java/org/apache/lucene/analysis/standard/StandardAnalyzer.java#L47-L53中。
final List<String> stopWords = Arrays.asList(
"a", "an", "and", "are", "as", "at", "be", "but", "by",
"for", "if", "in", "into", "is", "it",
"no", "not", "of", "on", "or", "such",
"that", "the", "their", "then", "there", "these",
"they", "this", "to", "was", "will", "with"
);