Package org.apache.lucene.search
Class BlendedTermQuery
- java.lang.Object
-
- org.apache.lucene.search.Query
-
- org.apache.lucene.search.BlendedTermQuery
-
public final class BlendedTermQuery extends Query
AQuerythat blends index statistics across multiple terms. This is particularly useful when several terms should produce identical scores, regardless of their index statistics.For instance imagine that you are resolving synonyms at search time, all terms should produce identical scores instead of the default behavior, which tends to give higher scores to rare terms.
An other useful use-case is cross-field search: imagine that you would like to search for
johnon two fields:first_nameandlast_name. You might not want to give a higher weight to matches on the field wherejohnis rarer, in which caseBlendedTermQuerywould help as well.
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classBlendedTermQuery.BuilderA Builder forBlendedTermQuery.static classBlendedTermQuery.DisjunctionMaxRewriteABlendedTermQuery.RewriteMethodthat creates aDisjunctionMaxQueryout of the sub queries.static classBlendedTermQuery.RewriteMethodABlendedTermQuery.RewriteMethoddefines how queries for individual terms should be merged.
-
Field Summary
Fields Modifier and Type Field Description static BlendedTermQuery.RewriteMethodBOOLEAN_REWRITEABlendedTermQuery.RewriteMethodthat adds all sub queries to aBooleanQuery.private float[]boostsprivate TermStates[]contextsstatic BlendedTermQuery.RewriteMethodDISJUNCTION_MAX_REWRITEBlendedTermQuery.DisjunctionMaxRewriteinstance with a tie-breaker of0.01.private BlendedTermQuery.RewriteMethodrewriteMethodprivate Term[]terms
-
Constructor Summary
Constructors Modifier Constructor Description privateBlendedTermQuery(Term[] terms, float[] boosts, TermStates[] contexts, BlendedTermQuery.RewriteMethod rewriteMethod)
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description private static TermStatesadjustFrequencies(IndexReaderContext readerContext, TermStates ctx, int artificialDf, long artificialTtf)booleanequals(java.lang.Object other)Override and implement query instance equivalence properly in a subclass.private booleanequalsTo(BlendedTermQuery other)inthashCode()Override and implement query hash code properly in a subclass.Queryrewrite(IndexReader reader)Expert: called to re-write queries into primitive queries.java.lang.StringtoString(java.lang.String field)Prints a query to a string, withfieldassumed to be the default field and omitted.voidvisit(QueryVisitor visitor)Recurse through the query tree, visiting any child queries-
Methods inherited from class org.apache.lucene.search.Query
classHash, createWeight, sameClassAs, toString
-
-
-
-
Field Detail
-
BOOLEAN_REWRITE
public static final BlendedTermQuery.RewriteMethod BOOLEAN_REWRITE
ABlendedTermQuery.RewriteMethodthat adds all sub queries to aBooleanQuery. ThisBlendedTermQuery.RewriteMethodis useful when matching on several fields is considered better than having a good match on a single field.
-
DISJUNCTION_MAX_REWRITE
public static final BlendedTermQuery.RewriteMethod DISJUNCTION_MAX_REWRITE
BlendedTermQuery.DisjunctionMaxRewriteinstance with a tie-breaker of0.01.
-
terms
private final Term[] terms
-
boosts
private final float[] boosts
-
contexts
private final TermStates[] contexts
-
rewriteMethod
private final BlendedTermQuery.RewriteMethod rewriteMethod
-
-
Constructor Detail
-
BlendedTermQuery
private BlendedTermQuery(Term[] terms, float[] boosts, TermStates[] contexts, BlendedTermQuery.RewriteMethod rewriteMethod)
-
-
Method Detail
-
equals
public boolean equals(java.lang.Object other)
Description copied from class:QueryOverride and implement query instance equivalence properly in a subclass. This is required so thatQueryCacheworks properly. Typically a query will be equal to another only if it's an instance of the same class and its document-filtering properties are identical that other instance. Utility methods are provided for certain repetitive code.- Specified by:
equalsin classQuery- See Also:
Query.sameClassAs(Object),Query.classHash()
-
equalsTo
private boolean equalsTo(BlendedTermQuery other)
-
hashCode
public int hashCode()
Description copied from class:QueryOverride and implement query hash code properly in a subclass. This is required so thatQueryCacheworks properly.- Specified by:
hashCodein classQuery- See Also:
Query.equals(Object)
-
toString
public java.lang.String toString(java.lang.String field)
Description copied from class:QueryPrints a query to a string, withfieldassumed to be the default field and omitted.
-
rewrite
public final Query rewrite(IndexReader reader) throws java.io.IOException
Description copied from class:QueryExpert: called to re-write queries into primitive queries. For example, a PrefixQuery will be rewritten into a BooleanQuery that consists of TermQuerys.
-
visit
public void visit(QueryVisitor visitor)
Description copied from class:QueryRecurse through the query tree, visiting any child queries
-
adjustFrequencies
private static TermStates adjustFrequencies(IndexReaderContext readerContext, TermStates ctx, int artificialDf, long artificialTtf) throws java.io.IOException
- Throws:
java.io.IOException
-
-