Namespace Lucene.Net.Queries
Filters and Queries that add to core Lucene.
Classes
BooleanFilter
A container Lucene.
BoostingQuery
The Boosting
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
ChainedFilter
Allows multiple Lucene.
Order in which filters are called depends on the position of the filter in the chain. It's probably more efficient to place the most restrictive filters/least computationally-intensive filters first.
CommonTermsQuery
A query that executes high-frequency terms in a optional sub-query to prevent
slow queries due to "common" terms like stopwords. This query
builds 2 queries off the Add(Term) added terms: low-frequency
terms are added to a required boolean clause and high-frequency terms are
added to an optional boolean clause. The optional clause is only executed if
the required "low-frequency" clause matches. Scores produced by this query
will be slightly different than plain Boolean
Common
Note: if the query only contains high-frequency terms the query is rewritten into a plain conjunction query ie. all high-frequency terms need to match in order to match a document.
Collection initializer note: To create and populate a Common
var query = new CommonTermsQuery() {
new Term("field", "microsoft"),
new Term("field", "office")
};
CustomScoreProvider
An instance of this subclass should be returned by
Get
Since Lucene 2.9, queries operate on each segment of an index separately,
so the protected m_context field can be used to resolve doc IDs,
as the supplied doc
ID is per-segment and without knowledge
of the Lucene.
@since 2.9.2
CustomScoreQuery
Query that sets document score as a programmatic function of several (sub) scores:
- the score of its subQuery (any query)
- (optional) the score of its Function
Query (or queries).
FilterClause
A Lucene.
TermFilter
A filter that includes documents that match with a specific term.
TermsFilter
Constructs a filter for docs matching any of the terms added to this class.
Unlike a RangeFilter this can be used for filtering on multiple terms that are not necessarily in
a sequence. An example might be a collection of primary keys from a database query result or perhaps
a choice of "category" labels picked by the end user. As a filter, this is much faster than the
equivalent query (a Boolean