| 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<String> |
AbstractRedisReactiveCommands.ftCursordel(String index,
AggregationReply.Cursor cursor) |
RedisFuture<String> |
AbstractRedisAsyncCommands.ftCursordel(String index,
AggregationReply.Cursor cursor) |
Mono<AggregationReply<K,V>> |
AbstractRedisReactiveCommands.ftCursorread(String index,
AggregationReply.Cursor cursor) |
RedisFuture<AggregationReply<K,V>> |
AbstractRedisAsyncCommands.ftCursorread(String index,
AggregationReply.Cursor cursor) |
Mono<AggregationReply<K,V>> |
AbstractRedisReactiveCommands.ftCursorread(String index,
AggregationReply.Cursor cursor,
int count) |
RedisFuture<AggregationReply<K,V>> |
AbstractRedisAsyncCommands.ftCursorread(String index,
AggregationReply.Cursor cursor,
int count) |
| Modifier and Type | Method and Description |
|---|---|
RedisFuture<String> |
RediSearchAsyncCommands.ftCursordel(String index,
AggregationReply.Cursor cursor)
Delete a cursor and free its associated resources.
|
RedisFuture<AggregationReply<K,V>> |
RediSearchAsyncCommands.ftCursorread(String index,
AggregationReply.Cursor cursor)
Read next results from an existing cursor using the default batch size.
|
RedisFuture<AggregationReply<K,V>> |
RediSearchAsyncCommands.ftCursorread(String index,
AggregationReply.Cursor cursor,
int count)
Read next results from an existing cursor and optionally override the batch size.
|
| Modifier and Type | Method and Description |
|---|---|
Mono<String> |
RediSearchReactiveCommands.ftCursordel(String index,
AggregationReply.Cursor cursor)
Delete a cursor and free its associated resources.
|
Mono<AggregationReply<K,V>> |
RediSearchReactiveCommands.ftCursorread(String index,
AggregationReply.Cursor cursor)
Read next results from an existing cursor using the default batch size.
|
Mono<AggregationReply<K,V>> |
RediSearchReactiveCommands.ftCursorread(String index,
AggregationReply.Cursor cursor,
int count)
Read next results from an existing cursor and optionally override the batch size.
|
| Modifier and Type | Method and Description |
|---|---|
String |
RediSearchCommands.ftCursordel(String index,
AggregationReply.Cursor cursor)
Delete a cursor and free its associated resources.
|
AggregationReply<K,V> |
RediSearchCommands.ftCursorread(String index,
AggregationReply.Cursor cursor)
Read next results from an existing cursor using the default batch size.
|
AggregationReply<K,V> |
RediSearchCommands.ftCursorread(String index,
AggregationReply.Cursor cursor,
int count)
Read next results from an existing cursor and optionally override the batch size.
|
| Modifier and Type | Method and Description |
|---|---|
RedisFuture<String> |
RedisAdvancedClusterAsyncCommandsImpl.ftCursordel(String index,
AggregationReply.Cursor cursor) |
Mono<String> |
RedisAdvancedClusterReactiveCommandsImpl.ftCursordel(String index,
AggregationReply.Cursor cursor) |
RedisFuture<AggregationReply<K,V>> |
RedisAdvancedClusterAsyncCommandsImpl.ftCursorread(String index,
AggregationReply.Cursor cursor) |
Mono<AggregationReply<K,V>> |
RedisAdvancedClusterReactiveCommandsImpl.ftCursorread(String index,
AggregationReply.Cursor cursor) |
RedisFuture<AggregationReply<K,V>> |
RedisAdvancedClusterAsyncCommandsImpl.ftCursorread(String index,
AggregationReply.Cursor cursor,
int count) |
Mono<AggregationReply<K,V>> |
RedisAdvancedClusterReactiveCommandsImpl.ftCursorread(String index,
AggregationReply.Cursor cursor,
int count) |
| Modifier and Type | Method and Description |
|---|---|
AsyncExecutions<String> |
NodeSelectionSearchAsyncCommands.ftCursordel(String index,
AggregationReply.Cursor cursor)
Delete a cursor and free its associated resources.
|
AsyncExecutions<AggregationReply<K,V>> |
NodeSelectionSearchAsyncCommands.ftCursorread(String index,
AggregationReply.Cursor cursor)
Read next results from an existing cursor using the default batch size.
|
AsyncExecutions<AggregationReply<K,V>> |
NodeSelectionSearchAsyncCommands.ftCursorread(String index,
AggregationReply.Cursor cursor,
int count)
Read next results from an existing cursor and optionally override the batch size.
|
| Modifier and Type | Method and Description |
|---|---|
Executions<String> |
NodeSelectionSearchCommands.ftCursordel(String index,
AggregationReply.Cursor cursor)
Delete a cursor and free its associated resources.
|
Executions<AggregationReply<K,V>> |
NodeSelectionSearchCommands.ftCursorread(String index,
AggregationReply.Cursor cursor)
Read next results from an existing cursor using the default batch size.
|
Executions<AggregationReply<K,V>> |
NodeSelectionSearchCommands.ftCursorread(String index,
AggregationReply.Cursor cursor,
int count)
Read next results from an existing cursor and optionally override the batch size.
|
| Modifier and Type | Method and Description |
|---|---|
static AggregationReply.Cursor |
AggregationReply.Cursor.of(long cursorId,
String nodeId)
Create a new cursor handle with the given cursor id and optional creating node id.
|
| Modifier and Type | Method and Description |
|---|---|
Optional<AggregationReply.Cursor> |
AggregationReply.getCursor()
Returns the optional Cursor metadata for pagination and (in cluster) sticky routing, if applicable.
|
| Modifier and Type | Method and Description |
|---|---|
void |
AggregationReply.setCursor(AggregationReply.Cursor cursor)
Set the
AggregationReply.Cursor metadata carried by this reply. |
Copyright © 2025 lettuce.io. All rights reserved.