Package org.apache.lucene.search
Class SortRescorer
- java.lang.Object
-
- org.apache.lucene.search.Rescorer
-
- org.apache.lucene.search.SortRescorer
-
-
Constructor Summary
Constructors Constructor Description SortRescorer(Sort sort)
Sole constructor.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Explanation
explain(IndexSearcher searcher, Explanation firstPassExplanation, int docID)
Explains how the score for the specified document was computed.TopDocs
rescore(IndexSearcher searcher, TopDocs firstPassTopDocs, int topN)
Rescore an initial first-passTopDocs
.
-
-
-
Constructor Detail
-
SortRescorer
public SortRescorer(Sort sort)
Sole constructor.
-
-
Method Detail
-
rescore
public TopDocs rescore(IndexSearcher searcher, TopDocs firstPassTopDocs, int topN) throws IOException
Description copied from class:Rescorer
Rescore an initial first-passTopDocs
.- Specified by:
rescore
in classRescorer
- Parameters:
searcher
-IndexSearcher
used to produce the first pass topDocsfirstPassTopDocs
- Hits from the first pass search. It's very important that these hits were produced by the provided searcher; otherwise the doc IDs will not match!topN
- How many re-scored hits to return- Throws:
IOException
-
explain
public Explanation explain(IndexSearcher searcher, Explanation firstPassExplanation, int docID) throws IOException
Description copied from class:Rescorer
Explains how the score for the specified document was computed.- Specified by:
explain
in classRescorer
- Throws:
IOException
-
-