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 -

Python Tornado package error when running server -

Qt QGraphicsScene is not accessable from QGraphicsView (on Qt 5.6.1) -