QueryArgs |
QueryArgs.dialect(int version) |
Selects the dialect version under which to execute the query.
|
QueryArgs |
QueryArgs.expander(String expander) |
Uses a custom query expander instead of the stemmer.
|
QueryArgs |
QueryArgs.explainScore() |
Returns a textual description of how the scores were calculated.
|
QueryArgs |
QueryArgs.filter(NumericFilter filter) |
Limits results to those having numeric values ranging between min and max, if numberFilter is defined as
a numeric attribute in FT.CREATE.
|
QueryArgs |
QueryArgs.geoFilter(GeoFilter filter) |
Filters the results to a given radius from lon and lat.
|
QueryArgs |
QueryArgs.highlight(HighlightArgs args) |
formats occurrences of matched text.
|
QueryArgs |
QueryArgs.inFields(String... fields) |
Filters the results to those appearing only in specific attributes of the document, like title or URL.
|
QueryArgs |
QueryArgs.inKeys(String... keys) |
Limits the result to a given set of keys specified in the list.
|
QueryArgs |
QueryArgs.inOrder() |
Puts the query terms in the same order in the document as in the query, regardless of the offsets between them.
|
QueryArgs |
QueryArgs.language(String lang) |
Use a stemmer for the supplied language during search for query expansion.
|
QueryArgs |
QueryArgs.limit(int offset,
int count) |
Limits the results to the offset and number of results given.
|
QueryArgs |
QueryArgs.nocontent() |
Returns the document ids and not the content.
|
QueryArgs |
QueryArgs.param(String name,
byte[] value) |
Defines a parameter with a byte array value.
|
QueryArgs |
QueryArgs.param(String name,
double[] value) |
Defines a parameter with a double array value.
|
QueryArgs |
QueryArgs.param(String name,
float[] value) |
Defines a parameter with a float array value.
|
QueryArgs |
QueryArgs.param(String name,
int[] value) |
Defines a parameter with an int array value.
|
QueryArgs |
QueryArgs.param(String name,
long[] value) |
Defines a parameter with a long array value.
|
QueryArgs |
QueryArgs.param(String name,
String value) |
Defines one or more value parameters.
|
QueryArgs |
QueryArgs.returnAttribute(String field) |
Limits the attributes returned from the document.
|
QueryArgs |
QueryArgs.returnAttribute(String field,
String alias) |
Limits the attributes returned from the document.
|
QueryArgs |
QueryArgs.scorer(String scorer) |
Uses a custom scoring function you define
|
QueryArgs |
QueryArgs.slop(int slop) |
Allows a maximum of slop intervening number of unmatched offsets between phrase terms.
|
QueryArgs |
QueryArgs.sortByAscending(String field) |
Orders the results by the value of this attribute.
|
QueryArgs |
QueryArgs.sortByDescending(String field) |
Orders the results by the value of this attribute.
|
QueryArgs |
QueryArgs.summarize(SummarizeArgs args) |
Returns only the sections of the attribute that contain the matched text.
|
QueryArgs |
QueryArgs.timeout(Duration timeout) |
Overrides the timeout parameter of the module.
|
QueryArgs |
QueryArgs.verbatim() |
Does not try to use stemming for query expansion but searches the query terms verbatim.
|
QueryArgs |
QueryArgs.withPayloads() |
Retrieves optional document payloads.
|
QueryArgs |
QueryArgs.withScores() |
Also returns the relative internal score of each document.
|
QueryArgs |
QueryArgs.withSortKeys() |
returns the value of the sorting key, right after the id and score and/or payload, if requested.
|