index_prefixes
index_prefixes
The index_prefixes
parameter enables the indexing of term prefixes to speed up prefix searches. It accepts the following optional settings:
| The minimum prefix length to index. Must be greater than 0, and defaults to 2. The value is inclusive. |
| The maximum prefix length to index. Must be less than 20, and defaults to 5. The value is inclusive. |
This example creates a text field using the default prefix length settings:
PUT my-index-000001
{
"mappings": {
"properties": {
"body_text": {
"type": "text",
"index_prefixes": { }
}
}
}
}
An empty settings object will use the default |
This example uses custom prefix length settings:
PUT my-index-000001
{
"mappings": {
"properties": {
"full_name": {
"type": "text",
"index_prefixes": {
"min_chars" : 1,
"max_chars" : 10
}
}
}
}
}