Keyword Analyzer

edit

The keyword analyzer is a “noop” analyzer which returns the entire input string as a single token.

Definition

edit

It consists of:

Tokenizer

Example output

edit
POST _analyze
{
  "analyzer": "keyword",
  "text": "The 2 QUICK Brown-Foxes jumped over the lazy dog's bone."
}

The above sentence would produce the following single term:

[ The 2 QUICK Brown-Foxes jumped over the lazy dog's bone. ]

Configuration

edit

The keyword analyzer is not configurable.