org.apache.lucene.search
Class DisjunctionMaxQuery
- java.lang.Object
-
- org.apache.lucene.search.Query
-
- org.apache.lucene.search.DisjunctionMaxQuery
-
- All Implemented Interfaces:
- java.io.Serializable, java.lang.Cloneable
public class DisjunctionMaxQuery extends Query
A query that generates the union of documents produced by its subqueries, and that scores each document with the maximum score for that document as produced by any subquery, plus a tie breaking increment for any additional matching subqueries. This is useful when searching for a word in multiple fields with different boost factors (so that the fields cannot be combined equivalently into a single search field). We want the primary score to be the one associated with the highest boost, not the sum of the field scores (as BooleanQuery would give). If the query is "albino elephant" this ensures that "albino" matching one field and "elephant" matching another gets a higher score than "albino" matching both fields. To get this result, use both BooleanQuery and DisjunctionMaxQuery: for each term a DisjunctionMaxQuery searches for it in each field, while the set of these DisjunctionMaxQuery's is combined into a BooleanQuery. The tie breaker capability allows results that include the same term in multiple fields to be judged better than results that include this term in only the best of those multiple fields, without confusing this with the better case of two different terms in the multiple fields.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor and Description DisjunctionMaxQuery(java.util.Collection disjuncts, float tieBreakerMultiplier)Creates a new DisjunctionMaxQueryDisjunctionMaxQuery(float tieBreakerMultiplier)Creates a new empty DisjunctionMaxQuery.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method and Description voidadd(java.util.Collection disjuncts)Add a collection of disjuncts to this disjunction via Iterablevoidadd(Query query)Add a subquery to this disjunctionjava.lang.Objectclone()Create a shallow copy of us -- used in rewriting if necessarybooleanequals(java.lang.Object o)Return true iff we represent the same query as ovoidextractTerms(java.util.Set terms)Expert: adds all terms occuring in this query to the terms set.inthashCode()Compute a hash code for hashing usjava.util.Iteratoriterator()An Iteratorover the disjuncts Queryrewrite(IndexReader reader)Optimize our representation and our subqueries representationsjava.lang.StringtoString(java.lang.String field)Prettyprint us.-
Methods inherited from class org.apache.lucene.search.Query
combine, getBoost, getSimilarity, mergeBooleanQueries, setBoost, toString, weight
-
-
-
-
Constructor Detail
-
DisjunctionMaxQuery
public DisjunctionMaxQuery(float tieBreakerMultiplier)
Creates a new empty DisjunctionMaxQuery. Use add() to add the subqueries.- Parameters:
tieBreakerMultiplier- this score of each non-maximum disjunct for a document is multiplied by this weight and added into the final score. If non-zero, the value should be small, on the order of 0.1, which says that 10 occurrences of word in a lower-scored field that is also in a higher scored field is just as good as a unique word in the lower scored field (i.e., one that is not in any higher scored field.
-
DisjunctionMaxQuery
public DisjunctionMaxQuery(java.util.Collection disjuncts, float tieBreakerMultiplier)Creates a new DisjunctionMaxQuery- Parameters:
disjuncts- a Collectionof all the disjuncts to add tieBreakerMultiplier- the weight to give to each matching non-maximum disjunct
-
-
Method Detail
-
add
public void add(Query query)
Add a subquery to this disjunction- Parameters:
query- the disjunct added
-
add
public void add(java.util.Collection disjuncts)
Add a collection of disjuncts to this disjunction via Iterable
-
iterator
public java.util.Iterator iterator()
An Iteratorover the disjuncts
-
rewrite
public Query rewrite(IndexReader reader) throws java.io.IOException
Optimize our representation and our subqueries representations
-
clone
public java.lang.Object clone()
Create a shallow copy of us -- used in rewriting if necessary
-
extractTerms
public void extractTerms(java.util.Set terms)
Description copied from class:QueryExpert: adds all terms occuring in this query to the terms set. Only works if this query is in itsrewrittenform.- Overrides:
extractTermsin classQuery
-
toString
public java.lang.String toString(java.lang.String field)
Prettyprint us.
-
equals
public boolean equals(java.lang.Object o)
Return true iff we represent the same query as o- Overrides:
equalsin classjava.lang.Object- Parameters:
o- another object- Returns:
- true iff o is a DisjunctionMaxQuery with the same boost and the same subqueries, in the same order, as us
-
hashCode
public int hashCode()
Compute a hash code for hashing us- Overrides:
hashCodein classjava.lang.Object- Returns:
- the hash code
-
-
DataMelt 3.0 © DataMelt by jWork.ORG