Tokenizers
What are tokenizers ? The part that separates the text into the tokens that will be kept in the index is called the tokenizer. Additionally, tokenizers deconstruct words into their most basic forms. Often, a token is a single word, but you might want to create unusual tokens such as: A full postal address. A complete URL or email address. Words based on the grammar of a specific language. There are 13 different tokenizers to choose from. These tokenizers include: classic- This tokenizer processes text based on grammar for European languages. keyword- This tokenizer emits the entire input as a single token. Use this tokenizer for fields that should always be indexed as one value. lowercase- This tokenizer divides text at non-letters and then modifies the resulting tokens to all lower case. microsoft_language_tokenizer - This tokenizer divides text based on the grammar of the language you specify. pattern- This tokenizer divides texts where it matches a regular expression that y...