Created
March 15, 2019 15:43
-
-
Save drusellers/145f04352a87d3093e2c12f7d3fa684b to your computer and use it in GitHub Desktop.
Type Ahead Blog Post - International Mapping
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"mappings": { | |
"_doc": { | |
"properties": { | |
"name" : { | |
"type" : "text", | |
"analyzer": "fuzzy_analysis" | |
}, | |
"handles": { | |
"type": "text", | |
"analyzer": "fuzzy_analysis" | |
} | |
} | |
} | |
}, | |
"settings": { | |
"index" : { | |
"number_of_shards" : 1, | |
"number_of_replicas" : 0 | |
}, | |
"analysis": { | |
"analyzer": { | |
"fuzzy_analysis": { | |
"tokenizer": "fuzzy", | |
"filter": ["asciifolding", "lowercase"] | |
} | |
}, | |
"tokenizer": { | |
"fuzzy": { | |
"type": "edge_ngram", | |
"min_gram": 2, | |
"max_gram": 10, | |
"token_chars": ["letter"] | |
} | |
} | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment