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.
|
2013-11-06 09:32:43 -05:00
|
|
|
Defaults to an 'empty' stopword list added[1.0.0.Beta1, Previously
|
2014-01-13 14:04:30 -05:00
|
|
|
defaulted to the English stopwords list]. Check
|
|
|
|
<<analysis-stop-analyzer,Stop Analyzer>> for more details.
|
2013-08-28 19:24:34 -04:00
|
|
|
|`max_token_length` |The maximum token length. If a token is seen that
|
|
|
|
exceeds this length then it is discarded. Defaults to `255`.
|
|
|
|
|=======================================================================
|
|
|
|
|