public abstract class ValueSourceScorer extends Scorer
Scorer which returns the result of FunctionValues.floatVal(int) as
the score for a document, and which filters out documents that don't match matches(int).
This Scorer has a TwoPhaseIterator. This is similar to FunctionQuery,
but this one has no Weight normalization factors/multipliers
and that one doesn't filter either.
Note: If the scores are needed, then the underlying value will probably be fetched/computed twice -- once to filter and next to return the score. If that's non-trivial then consider wrapping it in an implementation that will cache the current value.
FunctionQueryScorer.ChildScorer| Modifier and Type | Field and Description |
|---|---|
protected FunctionValues |
values |
| Modifier | Constructor and Description |
|---|---|
protected |
ValueSourceScorer(LeafReaderContext readerContext,
FunctionValues values) |
| Modifier and Type | Method and Description |
|---|---|
int |
docID() |
DocIdSetIterator |
iterator() |
abstract boolean |
matches(int doc)
Override to decide if this document matches.
|
float |
score() |
TwoPhaseIterator |
twoPhaseIterator() |
getChildren, getWeightprotected final FunctionValues values
protected ValueSourceScorer(LeafReaderContext readerContext, FunctionValues values)
public abstract boolean matches(int doc)
throws IOException
TwoPhaseIterator.matches().IOExceptionpublic DocIdSetIterator iterator()
public TwoPhaseIterator twoPhaseIterator()
twoPhaseIterator in class Scorerpublic float score()
throws IOException
score in class ScorerIOExceptionCopyright © 2000-2018 Apache Software Foundation. All Rights Reserved.