DisjunctionMaxQuery

open class DisjunctionMaxQuery(disjuncts: MutableCollection<out Query>, tieBreakerMultiplier: Float) : Query, Iterable<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.

Constructors

Link copied to clipboard
constructor(disjuncts: MutableCollection<out Query>, tieBreakerMultiplier: Float)

Properties

Link copied to clipboard

Functions

Link copied to clipboard
open override fun createWeight(searcher: IndexSearcher, scoreMode: ScoreMode, boost: Float): Weight

Create the Weight used to score us

Link copied to clipboard
open operator override fun equals(other: Any?): Boolean

Return true if we represent the same query as other

Link copied to clipboard
Link copied to clipboard
open override fun hashCode(): Int

Compute a hash code for hashing us

Link copied to clipboard
open operator override fun iterator(): MutableIterator<Query>
Link copied to clipboard
open override fun rewrite(indexSearcher: IndexSearcher): Query

Optimize our representation and our subqueries representations

Link copied to clipboard
open override fun toString(field: String?): String

Prints a query to a string, with field assumed to be the default field and omitted.

open override fun toString(): String

Prints a query to a string.

Link copied to clipboard
open override fun visit(visitor: QueryVisitor)

Recurse through the query tree, visiting any child queries.