Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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?

share|improve this question
possible duplicate of How to make Lucene match all words in query? – Adam Paynter Feb 18 '11 at 14:05

2 Answers

MultiFieldQuery is used when you want to search a term across multiple fields. What you are looking for is a simple Boolean query with two clauses. A query as follows should work.

+(+contents:hello +contents:world) +priority:high

Here you have one boolean query with to Occur.MUST clauses one which is, in turn, a boolean query two clauses and another is a term query.

share|improve this answer

You can set default operator for the parser via setDefaultOperator method.

An Example:

...
Analyzer userTermsAnalyzer = searchFactory.getAnalyzer(MyEntity.class);
MultiFieldQueryParser queryParser = new MultiFieldQueryParser(Version.LUCENE_CURRENT, new String[]{"text"}, userTermsAnalyzer);
queryParser.setDefaultOperator(QueryParser.Operator.AND);
Query taskQuery = queryParser.parse("contents:hello world priority:high");
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.