Is there a way in elasticsearch to boost the importance of the exact phrase appearing in the the document?
For example if I was searching for the phrase \"web develo
I used below sample query in my case which is working. It brings exact + fuzzy results but exact ones are boosted!
{ "query": { "bool": { "should": [ { "match": { "name": "pala" } }, { "fuzzy": { "name": "pala" } } ] }}}