I want to know when a term is boosted in lucene query how does scores change? I mean what is the scoring algorithm of lucene for scoring documents when query has one or more term that boosted?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
You find the complete answer here: http://lucene.apache.org/java/2_4_0/api/org/apache/lucene/search/Similarity.html
Each term in the query is summed up with
The easy answer is its multiplicated to the term weight. |
||||
|
|