Docs: Use the "stemmer" token filter for the english analyzer, to be consistent

This commit is contained in:
Clinton Gormley 2014-06-11 13:47:01 +02:00
parent 8a94b71b75
commit 04dacaaf27
1 changed files with 5 additions and 1 deletions

View File

@ -519,6 +519,10 @@ The `english` analyzer could be reimplemented as a `custom` analyzer as follows:
"type": "keyword_marker",
"keywords": [] <2>
},
"english_stemmer": {
"type": "stemmer",
"language": "english"
},
"english_possessive_stemmer": {
"type": "stemmer",
"language": "possessive_english"
@ -532,7 +536,7 @@ The `english` analyzer could be reimplemented as a `custom` analyzer as follows:
"lowercase",
"english_stop",
"english_keywords",
"porter_stem"
"english_stemmer"
]
}
}