Package | Description |
---|---|
org.apache.lucene.search |
Code to search indices.
|
Modifier and Type | Class and Description |
---|---|
private static class |
HitsThresholdChecker.GlobalHitsThresholdChecker
Implementation of HitsThresholdChecker which allows global hit counting
|
private static class |
HitsThresholdChecker.LocalHitsThresholdChecker
Default implementation of HitsThresholdChecker to be used for single threaded execution
|
Modifier and Type | Field and Description |
---|---|
(package private) HitsThresholdChecker |
TopFieldCollector.hitsThresholdChecker |
(package private) HitsThresholdChecker |
TopScoreDocCollector.hitsThresholdChecker |
Modifier and Type | Method and Description |
---|---|
static HitsThresholdChecker |
HitsThresholdChecker.create(int totalHitsThreshold) |
static HitsThresholdChecker |
HitsThresholdChecker.createShared(int totalHitsThreshold) |
Modifier and Type | Method and Description |
---|---|
(package private) static TopScoreDocCollector |
TopScoreDocCollector.create(int numHits,
ScoreDoc after,
HitsThresholdChecker hitsThresholdChecker,
MaxScoreAccumulator minScoreAcc) |
(package private) static TopFieldCollector |
TopFieldCollector.create(Sort sort,
int numHits,
FieldDoc after,
HitsThresholdChecker hitsThresholdChecker,
MaxScoreAccumulator minScoreAcc)
Same as above with additional parameters to allow passing in the threshold checker and the max score accumulator.
|