Created
February 20, 2023 07:26
-
-
Save Kumawatlalit912/4e277a21d4973f7bd8b66d3eceab6454 to your computer and use it in GitHub Desktop.
elastic analyzers
This file contains hidden or 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
put hola/ | |
{ | |
"settings":{ | |
"analysis":{ | |
"analyzer":{ | |
"my-analyzer":{ | |
"tokenizer":"my-tokenizer", | |
"filter":["lowercase"] | |
}, | |
"my-analyzer_search":{ | |
"tokenizer":"lowercase" | |
} | |
}, | |
"tokenizer":{ | |
"my-tokenizer":{ | |
"type":"edge_ngram", | |
"token_chars":["digit","letter"], | |
"max_gram":10, | |
"min_gram":2 | |
} | |
} | |
} | |
}, | |
"mappings":{ | |
"properties":{ | |
"title":{ | |
"type":"text", | |
"analyzer":"my-analyzer", | |
"search_analyzer":"my-analyzer_search" | |
} | |
} | |
} | |
} | |
post hola/_doc/1 | |
{ | |
"title":"hola amigo whats up" | |
} | |
post hola/_refresh | |
get hola/_search | |
{ | |
"query":{ | |
"match":{ | |
"title":{ | |
"query":"ho", | |
"operator": "and" | |
} | |
} | |
} | |
} | |
post hola/_analyze | |
{ | |
"text":"hola amigo whats up", | |
"analyzer":"my-analyzer" | |
} | |
post hola/_search | |
{ | |
"query":{ | |
"match":{ | |
"title":{ | |
"query":"amig", | |
"operator": "and" | |
} | |
} | |
} | |
} | |
post hola/_search | |
{ | |
"query":{ | |
"match":{ | |
"title":{ | |
"query": "up", | |
"operator": "and" | |
} | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment