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

Can I boost different fields in MultiFieldQueryParser with different factors? Also, what is the maximum boost factor value I can assign to a field?

Thanks a ton! Ed

share|improve this question

1 Answer

up vote 4 down vote accepted

MultiFieldQueryParser has a constructor that accepts a map of boosts. You use it with something like this:

String[] fields = new String[] { "title", "keywords", "text" };
HashMap<String,Float> boosts = new HashMap<String,Float>();
boosts.put("title", 10);
boosts.put("keywords", 5);
MultiFieldQueryParser queryParser = new MultiFieldQueryParser(
    fields, 
    new StandardAnalyzer(),
    boosts
);

As for the maximum boost, I'm not sure, but you shouldn't think about boost in absolute terms anyway. Just use a ratio of boosts that makes sense. Also see this question.

share|improve this answer
Hi,thanks for your answer....am using lucene.net version 2.0.0.4 I dont see MultiFieldQueryParser constructor accepting boost values. MultiFieldQueryParser multiFieldQueryParser = new MultiFieldQueryParser(fields, _analyzer); May I know which Lucene version are u using? Thanks. – Ed. Feb 16 '09 at 20:36
The boosts parameter was available only in Lucene 2.4. If you can't upgrade you might consider copying the code into your own MyMutliFieldQueryParser. It's not that much code. – itsadok Feb 17 '09 at 7:24
You may have to port the code from java... I couldn't find lucene.net's source code online (svn.apache.org is down ATM). – itsadok Feb 17 '09 at 7:30

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.