Package org.apache.lucene.search
Class ScoreCachingWrappingScorer
- java.lang.Object
- 
- org.apache.lucene.search.Scorable
- 
- org.apache.lucene.search.ScoreCachingWrappingScorer
 
 
- 
 public final class ScoreCachingWrappingScorer extends Scorable AScorerwhich wraps another scorer and caches the score of the current document. Successive calls toscore()will return the same result and will not invoke the wrapped Scorer's score() method, unless the current document has changed.
 This class might be useful due to the changes done to theCollectorinterface, in which the score is not computed for a document by default, only if the collector requests it. Some collectors may need to use the score in several places, however all they have in hand is aScorerobject, and might end up computing the score of a document more than once.
- 
- 
Nested Class Summary- 
Nested classes/interfaces inherited from class org.apache.lucene.search.ScorableScorable.ChildScorable
 
- 
 - 
Method SummaryAll Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description intdocID()Returns the doc ID that is currently being scored.Collection<Scorable.ChildScorable>getChildren()Returns child sub-scorers positioned on the current documentfloatscore()Returns the score of the current document matching the query.voidsetMinCompetitiveScore(float minScore)Optional method: Tell the scorer that its iterator may safely ignore all documents whose score is less than the givenminScore.static Scorablewrap(Scorable scorer)Wraps the providedScorableunless it's already an instance ofScoreCachingWrappingScorer, in which case it will just return the provided instance.- 
Methods inherited from class org.apache.lucene.search.ScorablesmoothingScore
 
- 
 
- 
- 
- 
Method Detail- 
wrappublic static Scorable wrap(Scorable scorer) Wraps the providedScorableunless it's already an instance ofScoreCachingWrappingScorer, in which case it will just return the provided instance.- Parameters:
- scorer- Underlying- Scorableto wrap
- Returns:
- Instance of ScoreCachingWrappingScorerwrapping the underlyingscorer
 
 - 
scorepublic float score() throws IOExceptionDescription copied from class:ScorableReturns the score of the current document matching the query.- Specified by:
- scorein class- Scorable
- Throws:
- IOException
 
 - 
setMinCompetitiveScorepublic void setMinCompetitiveScore(float minScore) throws IOExceptionDescription copied from class:ScorableOptional method: Tell the scorer that its iterator may safely ignore all documents whose score is less than the givenminScore. This is a no-op by default.This method may only be called from collectors that use ScoreMode.TOP_SCORES, and successive calls may only set increasing values ofminScore.- Overrides:
- setMinCompetitiveScorein class- Scorable
- Throws:
- IOException
 
 - 
docIDpublic int docID() Description copied from class:ScorableReturns the doc ID that is currently being scored.
 - 
getChildrenpublic Collection<Scorable.ChildScorable> getChildren() Description copied from class:ScorableReturns child sub-scorers positioned on the current document- Overrides:
- getChildrenin class- Scorable
 
 
- 
 
-