web-dev-qa-db-ja.com

LuceneのStopFilterで使用されるストップワードのデフォルトのリストは何ですか?

Luceneにはデフォルトのストップフィルターがあります( http://lucene.Apache.org/core/4_0_0/analyzers-common/org/Apache/lucene/analysis/core/StopFilter.html )。リストに単語はありますか?

22
alvas

StandardAnalyzerおよびEnglishAnalyzerに設定されているデフォルトのストップワードはStopAnalyzer.ENGLISH_STOP_WORDS_SETからのものであり、次のとおりです。

"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"

StopFilter自体は、ストップワードのデフォルトセットを定義していません。

41
femtoRgon