Cut Off Frequency and operator: "and"

"query": {
"multi_match": {
"query": "how to do business process",
"operator": "and",
"fields": [
"title.stemmed_with_stopwords_with_synonyms",
"title.stemmed_no_stopwords"
],
"cutoff_frequency": 0.01
}
}

I was trying to make a search query to search for the above query but, instead of returning results which have business process it's giving results for 'how' more than the former. Is there a way to solve this?

I would like to know this too

This topic was automatically closed 28 days after the last reply. New replies are no longer allowed.