"english_stop": {
"type": "stop",
"stopwords": "english "
},
i want to know the specific words
colings86
(Colin Goodheart-Smithe)
August 14, 2017, 9:17am
2
The default english stop words are provided by the StandardAnalyzer and can be found here:
public static final CharArraySet ENGLISH_STOP_WORDS_SET;
static {
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"
);
final CharArraySet stopSet = new CharArraySet(stopWords, false);
ENGLISH_STOP_WORDS_SET = CharArraySet.unmodifiableSet(stopSet);
}
system
(system)
Closed
September 11, 2017, 9:17am
3
This topic was automatically closed 28 days after the last reply. New replies are no longer allowed.