standard-analyzer.asciidoc 943 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 stopwords to initialize the stop filter with.
  18. Defaults to an 'empty' stopword list Check
  19. <<analysis-stop-analyzer,Stop Analyzer>> for more details.
  20. |`max_token_length` |The maximum token length. If a token is seen that exceeds
  21. this length then it is split at `max_token_length` intervals. Defaults to `255`.
  22. |=======================================================================