| 123456789101112131415161718 | [[index-modules-analysis]]== AnalysisThe index analysis module acts as a configurable registry of Analyzersthat can be used in order to break down indexed (analyzed) fields when adocument is indexed as well as to process query strings. It maps to the Lucene`Analyzer`.Analyzers are (generally) composed of a single `Tokenizer` and zero ormore `TokenFilters`. A set of `CharFilters` can be associated with ananalyzer to process the characters prior to other analysis steps. Theanalysis module allows one to register `TokenFilters`, `Tokenizers` and`Analyzers` under logical names that can then be referenced either inmapping definitions or in certain APIs. The Analysis moduleautomatically registers (*if not explicitly defined*) built inanalyzers, token filters, and tokenizers.See <<analysis>> for configuration details.
 |