I am facing a business requirement that states the order of words must be respected in proximity search. For example, if I search "A B~2", then only documents with "A B" should be returned, not documents with "B A".
It looks like Azure Search proximity search does not take the order of works into account. The JSFIDDLE link below demonstrates what I am referring to. The query searches quality analyst~5. It returns terms such as "Quality Oversight and Analyst" but it also returns terms such as "Senior Analyst, Quality and Data Management".
http://fiddle.jshell.net/liamca/gkvfLe6s/1/?index=nycjobs&apikey=252044BE3886FE4A8E3BAA4F595114BB&query=api-version=2016-09-01%26$count=true%26$select=business_title%26queryType=full%26search=business_title:%22quality%20analyst%22~5
is there support (current or future planned) for respecting "word order" in proximity search?
Thanks, Andres