Uses of Class
redis.clients.jedis.search.Query
Packages that use Query
Package
Description
This package contains the classes and interfaces related to RediSearch module.
-
Uses of Query in redis.clients.jedis
Methods in redis.clients.jedis with parameters of type QueryModifier and TypeMethodDescriptionfinal CommandObject<String> final CommandObject<List<String>> CommandObjects.ftExplainCLI(String indexName, Query query) MultiNodePipelineBase.ftExplainCLI(String indexName, Query query) Pipeline.ftExplainCLI(String indexName, Query query) TransactionBase.ftExplainCLI(String indexName, Query query) UnifiedJedis.ftExplainCLI(String indexName, Query query) final CommandObject<Map.Entry<SearchResult, Map<String, Object>>> CommandObjects.ftProfileSearch(String indexName, FTProfileParams profileParams, Query query) UnifiedJedis.ftProfileSearch(String indexName, FTProfileParams profileParams, Query query) final CommandObject<SearchResult> final CommandObject<SearchResult> UnifiedJedis.ftSearchIteration(int batchSize, String indexName, Query query) limit(java.lang.Integer, java.lang.Integer)will be ignored. -
Uses of Query in redis.clients.jedis.search
Methods in redis.clients.jedis.search that return QueryModifier and TypeMethodDescriptionQuery.addFilter(Query.Filter f) Add a filter to the query's filter listParameters can be referenced in the query string by a $ , followed by the parameter name, e.g., $user , and each such reference in the search query to a parameter name is substituted by the corresponding parameter value.Query.dialect(int dialect) Set the dialect version to execute the query accordinglyQuery.highlightFields(String... fields) Query.highlightFields(Query.HighlightTags tags, String... fields) Limit the results to a certain offset and limitQuery.limitFields(String... fields) Limit the query to results that are limited to a specific set of fieldsLimit the query to results that are limited to a specific set of keysQuery.returnFields(String... fields) Result's projection - the fields to return by the queryQuery.returnFields(FieldName... fields) Result's projection - the fields to return by the queryQuery.setExpander(String field) Set the query to use a custom query expander instead of the stemmerQuery.setInOrder()Set the query terms appear in the same order in the document as in the query, regardless of the offsets between themQuery.setLanguage(String language) Set the query language, for stemming purposesQuery.setNoContent()Set the query not to return the contents of documents, and rather just return the idsQuery.setNoStopwords()Set the query not to filter for stopwords.Query.setPayload(byte[] payload) Deprecated.Since RediSearch 2.0.0, PAYLOAD option is deprecated.Set the query custom scorerSet the query to be sorted by a Sortable field defined in the schemaQuery.setVerbatim()Set the query to verbatim mode, disabling stemming and query expansionQuery.setWithPayload()Deprecated.Since RediSearch 2.0.0, WITHPAYLOADS option is deprecated.Query.setWithScores()Set the query to return a factored score for each results.Query.slop(int slop) Set the slop to execute the query accordinglyQuery.summarizeFields(int contextLen, int fragmentCount, String separator, String... fields) Query.summarizeFields(String... fields) Query.timeout(long timeout) Set the timeout to execute the query accordinglyMethods in redis.clients.jedis.search with parameters of type QueryModifier and TypeMethodDescriptionRediSearchCommands.ftExplainCLI(String indexName, Query query) RediSearchPipelineCommands.ftExplainCLI(String indexName, Query query) RediSearchCommands.ftProfileSearch(String indexName, FTProfileParams profileParams, Query query) Constructors in redis.clients.jedis.search with parameters of type QueryModifierConstructorDescriptionFtSearchIteration(ConnectionProvider connectionProvider, int batchSize, String indexName, Query query) limit(java.lang.Integer, java.lang.Integer)will be ignored.