I would to ask if someone knows how to specify a field using 'qs' parameter. I mean, for example, a have a document with this fields and content
- id: 1
- name: Football
- keywords: football, goal, goalkeeper
- phrase_keywords: premier league, champions league, golden awards,
Then i make a search by: 'premier awards' using Dismax with parameter qs: 20. So, parameters will be like:
defType:q=foo&defType=dismax&q:"premier awards"&qs:20
Results will be "name" content, right, but i just apply qs:20 to field phrase keywords, because if a search: 'goal league' is doenst match any result, although if i break the search in: "goal premier" OR goal OR premier.
Because i would like to search like this:
phrase_keywords:"goal premier" or keywords:goal OR keywords:premier
but in phrase_keywords with "qs" (proximity) and for keyword a normal search.