ElasticSearch - Search fuzzyness - SQS -


i have data going elasticsearch - when search spiderman, want return direct spiderman matches , things match spider-man --- doesn't seem working though, thoughts?

sample data

title: spiderman title: spider-man 

query:

{       "query": {         "simple_query_string": {           "query": "spiderman~3",           "analyzer": "standard"         }       }     } 


Comments

Popular posts from this blog

Is there a better way to structure post methods in Class Based Views -

reflection - How to access the object-members of an object declaration in kotlin -

php - Doctrine Query Builder Error on Join: [Syntax Error] line 0, col 87: Error: Expected Literal, got 'JOIN' -