I'm trying to use MultiFieldQueryParser to execute the following search:
contents:hello world priority:high
i.e., I only want to see documents returned which contain the words 'hello' and 'world' and which have a priority of 'high'. The default behaviour for MultiFieldQueryParser appears to return anything which either contains contents:hello world OR priority:high - I can't figure out how to change this.
Any advice?