| Package | Description |
|---|---|
| io.lettuce.core |
The Redis client package containing
RedisClient for Redis Standalone and Redis Sentinel operations. |
| io.lettuce.core.api.async |
Standalone Redis API for asynchronous executed commands.
|
| io.lettuce.core.api.reactive |
Standalone Redis API for reactive command execution.
|
| io.lettuce.core.api.sync |
Standalone Redis API for synchronous executed commands.
|
| io.lettuce.core.cluster |
Client for Redis Cluster, see
RedisClusterClient. |
| io.lettuce.core.cluster.api.async |
Redis Cluster API for asynchronous executed commands.
|
| io.lettuce.core.cluster.api.sync |
Redis Cluster API for synchronous executed commands.
|
| io.lettuce.core.search |
Support for the RediSearch features.
|
| Modifier and Type | Method and Description |
|---|---|
Mono<SearchReply<K,V>> |
AbstractRedisReactiveCommands.ftSearch(String index,
V query) |
RedisFuture<SearchReply<K,V>> |
AbstractRedisAsyncCommands.ftSearch(String index,
V query) |
Mono<SearchReply<K,V>> |
AbstractRedisReactiveCommands.ftSearch(String index,
V query,
SearchArgs<K,V> args) |
RedisFuture<SearchReply<K,V>> |
AbstractRedisAsyncCommands.ftSearch(String index,
V query,
SearchArgs<K,V> args) |
| Modifier and Type | Method and Description |
|---|---|
RedisFuture<SearchReply<K,V>> |
RediSearchAsyncCommands.ftSearch(String index,
V query)
Search the index with a textual query using default search options.
|
RedisFuture<SearchReply<K,V>> |
RediSearchAsyncCommands.ftSearch(String index,
V query,
SearchArgs<K,V> args)
Search the index with a textual query using advanced search options and filters.
|
| Modifier and Type | Method and Description |
|---|---|
Mono<SearchReply<K,V>> |
RediSearchReactiveCommands.ftSearch(String index,
V query)
Search the index with a textual query using default search options.
|
Mono<SearchReply<K,V>> |
RediSearchReactiveCommands.ftSearch(String index,
V query,
SearchArgs<K,V> args)
Search the index with a textual query using advanced search options and filters.
|
| Modifier and Type | Method and Description |
|---|---|
SearchReply<K,V> |
RediSearchCommands.ftSearch(String index,
V query)
Search the index with a textual query using default search options.
|
SearchReply<K,V> |
RediSearchCommands.ftSearch(String index,
V query,
SearchArgs<K,V> args)
Search the index with a textual query using advanced search options and filters.
|
| Modifier and Type | Method and Description |
|---|---|
RedisFuture<SearchReply<K,V>> |
RedisAdvancedClusterAsyncCommandsImpl.ftSearch(String index,
V query) |
Mono<SearchReply<K,V>> |
RedisAdvancedClusterReactiveCommandsImpl.ftSearch(String index,
V query) |
RedisFuture<SearchReply<K,V>> |
RedisAdvancedClusterAsyncCommandsImpl.ftSearch(String index,
V query,
SearchArgs<K,V> args) |
Mono<SearchReply<K,V>> |
RedisAdvancedClusterReactiveCommandsImpl.ftSearch(String index,
V query,
SearchArgs<K,V> args) |
| Modifier and Type | Method and Description |
|---|---|
AsyncExecutions<SearchReply<K,V>> |
NodeSelectionSearchAsyncCommands.ftSearch(String index,
V query)
Search the index with a textual query using default search options.
|
AsyncExecutions<SearchReply<K,V>> |
NodeSelectionSearchAsyncCommands.ftSearch(String index,
V query,
SearchArgs<K,V> args)
Search the index with a textual query using advanced search options and filters.
|
| Modifier and Type | Method and Description |
|---|---|
Executions<SearchReply<K,V>> |
NodeSelectionSearchCommands.ftSearch(String index,
V query)
Search the index with a textual query using default search options.
|
Executions<SearchReply<K,V>> |
NodeSelectionSearchCommands.ftSearch(String index,
V query,
SearchArgs<K,V> args)
Search the index with a textual query using advanced search options and filters.
|
| Modifier and Type | Method and Description |
|---|---|
SearchReply<K,V> |
SearchReplyParser.parse(ComplexData data)
Parses Redis Search command response data into a structured
SearchReply object. |
| Modifier and Type | Method and Description |
|---|---|
List<SearchReply<K,V>> |
AggregationReply.getReplies()
Returns the list of search replies containing the aggregation results.
|
Copyright © 2025 lettuce.io. All rights reserved.