Luceneにはデフォルトのストップフィルターがあります( http://lucene.Apache.org/core/4_0_0/analyzers-common/org/Apache/lucene/analysis/core/StopFilter.html )。リストに単語はありますか?
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
自体は、ストップワードのデフォルトセットを定義していません。