Sunday, January 22, 2017

Lucene - Query Programming

As we've seen in previous chapter Lucene - Search Operation, Lucene uses IndexSearcher to make searches and it uses Query object created by QueryParser as input. In this chapter, we are going to discuss various types of Query objects and ways to create them programmatically. Creating different types of Query object gives control on the kind of search to be made.

Consider a case of Advanced Search, provided by many applications where users are given multiple options to confine the search results. By Query programming, we can achieve the same very easily.
Following is the list of Query types that we'll discuss in due course.
Sr. No.Class & Description
1TermQuery This class acts as a core component which creates/updates indexes during indexing process.
2TermRangeQuery TermRangeQuery is the used when a range of textual terms are to be searched.
3PrefixQuery PrefixQuery is used to match documents whose index starts with a specified string.
4BooleanQuery BooleanQuery is used to search documents which are result of multiple queries using AND, OR or NOT operators.
5PhraseQuery Phrase query is used to search documents which contain a particular sequence of terms.
6WildCardQuery WildcardQuery is used to search documents using wildcards like '*' for any character sequence,? matching a single character.
7FuzzyQuery FuzzyQuery is used to search documents using fuzzy implementation that is an approximate search based on edit distance algorithm.
8MatchAllDocsQuery MatchAllDocsQuery as name suggests matches all the documents.

No comments:

Post a Comment