There are two ways to create a search query: in text or object form.
A search query in text form is simpler but less flexible. The flexibility of queries in object form lies in the fact that it is possible for each subquery to set separate search options. In object form, you can also use, for example, regular expression query as a part of more complex one. All combinations of nesting search queries in object form can be found on the page Nesting search queries in object form.
The correlation of two forms of search queries is that each text query before search is transformed to query in object form. Therefore, processor handles queries in object form faster.
The full specification of the query language in text form is presented on the page Query language specification. Syntax with examples of all elements allowed in text search queries is presented on the page Search operation table.
Each example in this documentation is usually given with the search query in text and object form.
The example of complex query in object form is given below.
StringindexFolder="c:\\MyIndex\\";StringdocumentsFolder="c:\\MyDocuments\\";// Creating index
Indexindex=newIndex(indexFolder);// Indexing
index.add(documentsFolder);// Creating subquery 1 - simple word query
SearchQuerysubquery1=SearchQuery.createWordQuery("future");subquery1.setSearchOptions(newSearchOptions());// Setting search options only for subquery 1
subquery1.getSearchOptions().getFuzzySearch().setEnabled(true);subquery1.getSearchOptions().getFuzzySearch().setFuzzyAlgorithm(newTableDiscreteFunction(3));// The maximum number of differences is 3
// Creating subquery 2 - numeric range query
SearchQuerysubquery2=SearchQuery.createNumericRangeQuery(1,1000000);// Creating subquery 3 - regular expression query
SearchQuerysubquery3=SearchQuery.createRegexQuery("(.)\\1");// Combining subqueries into one query - phrase search query
SearchQueryquery=SearchQuery.createPhraseSearchQuery(subquery1,subquery2,subquery3);// Creating overall search options with increased capacity of occurrences
SearchOptionsoptions=newSearchOptions();options.setMaxOccurrenceCountPerTerm(1000000);options.setMaxTotalOccurrenceCount(10000000);// Searching
SearchResultresult=index.search(query,options);// The result may contain the following word sequences:
// futile 12 blessed
// father 7 excellent
// tyre 8 assyria
// return 147 229
More resources
GitHub examples
You may easily run the code from documentation articles and see the features in action in our GitHub examples: