Lucene have a default stopfilter (http://lucene.apache.org/core/4_0_0/analyzers-common/org/apache/lucene/analysis/core/StopFilter.html), does anyone know which are words in the list?
相关问题
- Delete Messages from a Topic in Apache Kafka
- Jackson Deserialization not calling deserialize on
- How to maintain order of key-value in DataFrame sa
- StackExchange API - Deserialize Date in JSON Respo
- Difference between Types.INTEGER and Types.NULL in
The default stop words set in
StandardAnalyzer
andEnglishAnalyzer
is fromStopAnalyzer.ENGLISH_STOP_WORDS_SET
, and they are:StopFilter
itself defines no default set of stop words.