| 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.
|
| io.lettuce.core.search.arguments |
| Modifier and Type | Method and Description |
|---|---|
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,
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,
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,
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,
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,
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,
SearchArgs<K,V> args)
Search the index with a textual query using advanced search options and filters.
|
| Constructor and Description |
|---|
SearchReplyParser(RedisCodec<K,V> codec,
SearchArgs<K,V> args)
Creates a new SearchReplyParser configured based on the provided search arguments.
|
| Modifier and Type | Method and Description |
|---|---|
SearchArgs<K,V> |
SearchArgs.Builder.build()
Build a new instance of the
SearchArgs. |
Copyright © 2025 lettuce.io. All rights reserved.