public class PayloadNearQuery extends SpanNearQuery
SpanNearQuery
except that it factors
in the value of the payloads located at each of the positions where the
TermSpans
occurs.
NOTE: In order to take advantage of this with the default scoring implementation
(DefaultSimilarity
), you must override DefaultSimilarity.scorePayload(int, int, int, BytesRef)
,
which returns 1 by default.
Payload scores are aggregated using a pluggable PayloadFunction
.Modifier and Type | Class and Description |
---|---|
class |
PayloadNearQuery.PayloadNearSpanScorer |
class |
PayloadNearQuery.PayloadNearSpanWeight |
Modifier and Type | Field and Description |
---|---|
protected String |
fieldName |
protected PayloadFunction |
function |
clauses, field, inOrder, slop
Constructor and Description |
---|
PayloadNearQuery(SpanQuery[] clauses,
int slop,
boolean inOrder) |
PayloadNearQuery(SpanQuery[] clauses,
int slop,
boolean inOrder,
PayloadFunction function) |
Modifier and Type | Method and Description |
---|---|
PayloadNearQuery |
clone()
Returns a clone of this query.
|
Weight |
createWeight(IndexSearcher searcher)
Expert: Constructs an appropriate Weight implementation for this query.
|
boolean |
equals(Object obj)
Returns true iff
o is equal to this. |
int |
hashCode() |
String |
toString(String field)
Prints a query to a string, with
field assumed to be the
default field and omitted. |
extractTerms, getClauses, getField, getSlop, getSpans, isInOrder, rewrite
protected String fieldName
protected PayloadFunction function
public PayloadNearQuery(SpanQuery[] clauses, int slop, boolean inOrder)
public PayloadNearQuery(SpanQuery[] clauses, int slop, boolean inOrder, PayloadFunction function)
public Weight createWeight(IndexSearcher searcher) throws IOException
Query
Only implemented by primitive queries, which re-write to themselves.
createWeight
in class SpanQuery
IOException
public PayloadNearQuery clone()
Query
clone
in class SpanNearQuery
public String toString(String field)
Query
field
assumed to be the
default field and omitted.toString
in class SpanNearQuery
public int hashCode()
hashCode
in class SpanNearQuery
public boolean equals(Object obj)
SpanNearQuery
o
is equal to this.equals
in class SpanNearQuery
Copyright © 2000-2012 Apache Software Foundation. All Rights Reserved.