org.apache.lucene.queries
Class BoostingQuery
java.lang.Object
org.apache.lucene.search.Query
org.apache.lucene.queries.BoostingQuery
- All Implemented Interfaces:
- Cloneable
public class BoostingQuery
- extends Query
The BoostingQuery class can be used to effectively demote results that match a given query.
Unlike the "NOT" clause, this still selects documents that contain undesirable terms,
but reduces their overall score:
Query balancedQuery = new BoostingQuery(positiveQuery, negativeQuery, 0.01f);
In this scenario the positiveQuery contains the mandatory, desirable criteria which is used to
select all matching documents, and the negativeQuery contains the undesirable elements which
are simply used to lessen the scores. Documents that match the negativeQuery have their score
multiplied by the supplied "boost" parameter, so this should be less than 1 to achieve a
demoting effect
This code was originally made available here: [WWW] http://marc.theaimsgroup.com/?l=lucene-user&m=108058407130459&w=2
and is documented here: http://wiki.apache.org/lucene-java/CommunityContributions
BoostingQuery
public BoostingQuery(Query match,
Query context,
float boost)
rewrite
public Query rewrite(IndexReader reader)
throws IOException
- Overrides:
rewrite
in class Query
- Throws:
IOException
hashCode
public int hashCode()
- Overrides:
hashCode
in class Query
equals
public boolean equals(Object obj)
- Overrides:
equals
in class Query
toString
public String toString(String field)
- Specified by:
toString
in class Query
Copyright © 2000-2012 Apache Software Foundation. All Rights Reserved.