Fix BooleanScorer javadocs: it's also used for MSM.

git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1675885 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Adrien Grand 2015-04-24 15:13:25 +00:00
parent ed9e1fc1b5
commit 665725e27e
1 changed files with 3 additions and 2 deletions

View File

@ -25,8 +25,9 @@ import org.apache.lucene.search.BooleanWeight;
import org.apache.lucene.util.PriorityQueue;
/**
* BulkSorer that is used for pure disjunctions: no MUST clauses and
* minShouldMatch == 1. This scorer scores documents by batches of 2048 docs.
* {@link BulkScorer} that is used for pure disjunctions and disjunctions
* that have low values of {@link BooleanQuery#setMinimumNumberShouldMatch(int)}
* and dense clauses. This scorer scores documents by batches of 2048 docs.
*/
final class BooleanScorer extends BulkScorer {