static TopFieldCollector |
TopFieldCollector.create(Sort sort,
int numHits,
boolean fillFields,
boolean trackDocScores,
boolean trackMaxScore,
boolean docsScoredInOrder) |
|
static TopFieldCollector |
TopFieldCollector.create(Sort sort,
int numHits,
FieldDoc after,
boolean fillFields,
boolean trackDocScores,
boolean trackMaxScore,
boolean docsScoredInOrder) |
|
static TopDocs |
TopDocs.merge(Sort sort,
int topN,
TopDocs[] shardHits) |
Returns a new TopDocs, containing topN results across
the provided TopDocs, sorting by the specified Sort .
|
protected TopFieldDocs |
IndexSearcher.search(List<AtomicReaderContext> leaves,
Weight weight,
FieldDoc after,
int nDocs,
Sort sort,
boolean fillFields,
boolean doDocScores,
boolean doMaxScore) |
|
TopFieldDocs |
IndexSearcher.search(Query query,
int n,
Sort sort) |
Search implementation with arbitrary sorting and no filter.
|
TopFieldDocs |
IndexSearcher.search(Query query,
Filter filter,
int n,
Sort sort) |
Search implementation with arbitrary sorting.
|
TopFieldDocs |
IndexSearcher.search(Query query,
Filter filter,
int n,
Sort sort,
boolean doDocScores,
boolean doMaxScore) |
Search implementation with arbitrary sorting, plus
control over whether hit scores and max score
should be computed.
|
protected TopFieldDocs |
IndexSearcher.search(Weight weight,
int nDocs,
Sort sort,
boolean doDocScores,
boolean doMaxScore) |
Expert: Low-level search implementation with arbitrary
sorting and control over whether hit scores and max
score should be computed.
|
protected TopFieldDocs |
IndexSearcher.search(Weight weight,
FieldDoc after,
int nDocs,
Sort sort,
boolean fillFields,
boolean doDocScores,
boolean doMaxScore) |
|
TopDocs |
IndexSearcher.searchAfter(ScoreDoc after,
Query query,
int n,
Sort sort) |
Finds the top n
hits for query where all results are after a previous
result (after ).
|
TopDocs |
IndexSearcher.searchAfter(ScoreDoc after,
Query query,
Filter filter,
int n,
Sort sort) |
Finds the top n
hits for query , applying filter if non-null,
where all results are after a previous result (after ).
|
TopDocs |
IndexSearcher.searchAfter(ScoreDoc after,
Query query,
Filter filter,
int n,
Sort sort,
boolean doDocScores,
boolean doMaxScore) |
Finds the top n
hits for query where all results are after a previous
result (after ), allowing control over
whether hit scores and max score should be computed.
|