2013-08-28 19:24:34 -04:00
|
|
|
[[analysis-standard-analyzer]]
|
|
|
|
=== Standard Analyzer
|
|
|
|
|
2013-10-23 19:43:18 -04:00
|
|
|
An analyzer of type `standard` is built using the
|
2013-08-28 19:24:34 -04:00
|
|
|
<<analysis-standard-tokenizer,Standard
|
2013-10-23 19:43:18 -04:00
|
|
|
Tokenizer>> with the
|
2013-08-28 19:24:34 -04:00
|
|
|
<<analysis-standard-tokenfilter,Standard
|
|
|
|
Token Filter>>,
|
|
|
|
<<analysis-lowercase-tokenfilter,Lower
|
|
|
|
Case Token Filter>>, and
|
|
|
|
<<analysis-stop-tokenfilter,Stop
|
|
|
|
Token Filter>>.
|
|
|
|
|
|
|
|
The following are settings that can be set for a `standard` analyzer
|
|
|
|
type:
|
|
|
|
|
|
|
|
[cols="<,<",options="header",]
|
|
|
|
|=======================================================================
|
|
|
|
|Setting |Description
|
2014-01-12 05:26:39 -05:00
|
|
|
|`stopwords` |A list of stopwords to initialize the stop filter with.
|
2014-09-26 15:04:42 -04:00
|
|
|
Defaults to an 'empty' stopword list Check
|
2014-01-13 14:04:30 -05:00
|
|
|
<<analysis-stop-analyzer,Stop Analyzer>> for more details.
|
2015-01-27 15:52:14 -05:00
|
|
|
|`max_token_length` |The maximum token length. If a token is seen that exceeds
|
|
|
|
this length then it is split at `max_token_length` intervals. Defaults to `255`.
|
2013-08-28 19:24:34 -04:00
|
|
|
|=======================================================================
|
|
|
|
|