name keywords importantes google etiqueta ejemplos description java apache lucene information-retrieval stop-words

java - keywords - ¿Cuál es la lista predeterminada de palabras clave utilizadas en el StopFilter de Lucene?



meta tags importantes (1)

Las palabras de detención predeterminadas establecidas en StandardAnalyzer e StopAnalyzer.ENGLISH_STOP_WORDS_SET son de StopAnalyzer.ENGLISH_STOP_WORDS_SET , y son:

"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 propio StopFilter no define un conjunto predeterminado de palabras de parada.

Lucene tiene un filtro de parada predeterminado ( http://lucene.apache.org/core/4_0_0/analyzers-common/org/apache/lucene/analysis/core/StopFilter.html ), ¿alguien sabe cuáles son las palabras en la lista?