public final class CombinedFieldQuery extends Query implements Accountable
Query
that treats multiple fields as a single stream and scores terms as if you had
indexed them as a single term in a single field.
The query works as follows:
IndexSearcher.getSimilarity()
to score documents.
In order for a similarity to be compatible, Similarity.computeNorm(org.apache.lucene.index.FieldInvertState)
must be additive:
the norm of the combined field is the sum of norms for each individual field. The norms must also
be encoded using SmallFloat.intToByte4(int)
. These requirements hold for all similarities that
compute norms the same way as SimilarityBase.computeNorm(org.apache.lucene.index.FieldInvertState)
, which includes BM25Similarity
and DFRSimilarity
. Per-field similarities are not supported.
The query also requires that either all fields or no fields have norms enabled. Having only some fields with norms enabled can result in errors.
The scoring is based on BM25F's simple formula described in:
http://www.staff.city.ac.uk/~sb317/papers/foundations_bm25_review.pdf. This query implements the
same approach but allows other similarities besides BM25Similarity
.
Modifier and Type | Class and Description |
---|---|
static class |
CombinedFieldQuery.Builder
A builder for
CombinedFieldQuery . |
NULL_ACCOUNTABLE
Modifier and Type | Method and Description |
---|---|
Weight |
createWeight(IndexSearcher searcher,
ScoreMode scoreMode,
float boost) |
boolean |
equals(Object o) |
List<Term> |
getTerms() |
int |
hashCode() |
long |
ramBytesUsed() |
Query |
rewrite(IndexReader reader) |
String |
toString(String field) |
void |
visit(QueryVisitor visitor) |
classHash, sameClassAs, toString
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
getChildResources
public long ramBytesUsed()
ramBytesUsed
in interface Accountable
public Query rewrite(IndexReader reader) throws IOException
rewrite
in class Query
IOException
public void visit(QueryVisitor visitor)
public Weight createWeight(IndexSearcher searcher, ScoreMode scoreMode, float boost) throws IOException
createWeight
in class Query
IOException
Copyright © 2000-2024 Apache Software Foundation. All Rights Reserved.