October 2019
Beginner
186 pages
5h 39m
English
The keyword tokenizer outputs the text as a single term:
POST _analyze { "tokenizer": "keyword", "text": "Los Angeles" }
This will output the following result:
[ Los Angeles ]
This tokenizer accepts the buffer_size parameter, which represents the number of characters read in a single pass. This is 256 by default.
Read now
Unlock full access