Package | Description |
---|---|
org.apache.lucene.queries.payloads |
The payloads package provides Query mechanisms for finding and using payloads.
|
Class and Description |
---|
PayloadFunction
An abstract class that defines a way for PayloadScoreQuery instances to transform
the cumulative effects of payload scores for a document.
|
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
(ClassicSimilarity ), you must override ClassicSimilarity.scorePayload(int, int, int, BytesRef) ,
which returns 1 by default. |
PayloadScoreQuery.PayloadSpans |