standard-analyzer.asciidoc 849 B

1234567891011121314151617181920212223242526
  1. [[analysis-standard-analyzer]]
  2. === Standard Analyzer
  3. An analyzer of type `standard` is built using the
  4. <<analysis-standard-tokenizer,Standard
  5. Tokenizer>> with the
  6. <<analysis-standard-tokenfilter,Standard
  7. Token Filter>>,
  8. <<analysis-lowercase-tokenfilter,Lower
  9. Case Token Filter>>, and
  10. <<analysis-stop-tokenfilter,Stop
  11. Token Filter>>.
  12. The following are settings that can be set for a `standard` analyzer
  13. type:
  14. [cols="<,<",options="header",]
  15. |=======================================================================
  16. |Setting |Description
  17. |`stopwords` |A list of stopword to initialize the stop filter with.
  18. Defaults to the english stop words.
  19. |`max_token_length` |The maximum token length. If a token is seen that
  20. exceeds this length then it is discarded. Defaults to `255`.
  21. |=======================================================================