See: Description
| Class | Description |
|---|---|
| AveragePayloadFunction |
Calculate the final score as the average score of all payloads seen.
|
| MaxPayloadFunction |
Returns the maximum payload score seen, else 1 if there are no payloads on the doc.
|
| MinPayloadFunction |
Calculates the minimum payload seen
|
| PayloadFunction |
An abstract class that defines a way for PayloadScoreQuery instances to transform
the cumulative effects of payload scores for a document.
|
| PayloadNearQuery | Deprecated
use
PayloadScoreQuery to wrap SpanNearQuery |
| PayloadScoreQuery |
A Query class that uses a
PayloadFunction to modify the score of a
wrapped SpanQuery
NOTE: In order to take advantage of this with the default scoring implementation
(DefaultSimilarity), you must override ClassicSimilarity.scorePayload(int, int, int, BytesRef),
which returns 1 by default. |
| PayloadTermQuery | Deprecated
use
PayloadScoreQuery to wrap SpanTermQuery |
| SpanNearPayloadCheckQuery | Deprecated |
| SpanPayloadCheckQuery |
Only return those matches that have a specific payload at the given position.
|
The following Query implementations are provided:
PayloadScoreQuery -- For all terms matched by
a SpanQuery, boost the score based on the value of the payload located at those terms.Copyright © 2000-2016 Apache Software Foundation. All Rights Reserved.