| 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.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.output |
Implementation of different output protocols including the Streaming API.
|
| Modifier and Type | Method and Description |
|---|---|
RedisFuture<List<IndexedValue<V>>> |
AbstractRedisAsyncCommands.argrepWithValues(K key,
ArGrepArgs grepArgs) |
Command<K,V,List<IndexedValue<V>>> |
RedisArrayCommandBuilder.argrepWithValues(K key,
ArGrepArgs grepArgs) |
reactor.core.publisher.Flux<IndexedValue<V>> |
AbstractRedisReactiveCommands.argrepWithValues(K key,
ArGrepArgs grepArgs) |
RedisFuture<List<IndexedValue<V>>> |
AbstractRedisAsyncCommands.arscan(K key,
long start,
long end) |
Command<K,V,List<IndexedValue<V>>> |
RedisArrayCommandBuilder.arscan(K key,
long start,
long end) |
reactor.core.publisher.Flux<IndexedValue<V>> |
AbstractRedisReactiveCommands.arscan(K key,
long start,
long end) |
RedisFuture<List<IndexedValue<V>>> |
AbstractRedisAsyncCommands.arscan(K key,
long start,
long end,
long limit) |
Command<K,V,List<IndexedValue<V>>> |
RedisArrayCommandBuilder.arscan(K key,
long start,
long end,
long limit) |
reactor.core.publisher.Flux<IndexedValue<V>> |
AbstractRedisReactiveCommands.arscan(K key,
long start,
long end,
long limit) |
| Modifier and Type | Method and Description |
|---|---|
RedisFuture<List<IndexedValue<V>>> |
RedisArrayAsyncCommands.argrepWithValues(K key,
ArGrepArgs grepArgs)
Search for elements matching predicates, returning index/value pairs.
|
RedisFuture<List<IndexedValue<V>>> |
RedisArrayAsyncCommands.arscan(K key,
long start,
long end)
Scan populated entries in a range, returning index/value pairs.
|
RedisFuture<List<IndexedValue<V>>> |
RedisArrayAsyncCommands.arscan(K key,
long start,
long end,
long limit)
Scan populated entries in a range with a limit, returning index/value pairs.
|
| Modifier and Type | Method and Description |
|---|---|
reactor.core.publisher.Flux<IndexedValue<V>> |
RedisArrayReactiveCommands.argrepWithValues(K key,
ArGrepArgs grepArgs)
Search for elements matching predicates, returning index/value pairs.
|
reactor.core.publisher.Flux<IndexedValue<V>> |
RedisArrayReactiveCommands.arscan(K key,
long start,
long end)
Scan populated entries in a range, returning index/value pairs.
|
reactor.core.publisher.Flux<IndexedValue<V>> |
RedisArrayReactiveCommands.arscan(K key,
long start,
long end,
long limit)
Scan populated entries in a range with a limit, returning index/value pairs.
|
| Modifier and Type | Method and Description |
|---|---|
List<IndexedValue<V>> |
RedisArrayCommands.argrepWithValues(K key,
ArGrepArgs grepArgs)
Search for elements matching predicates, returning index/value pairs.
|
List<IndexedValue<V>> |
RedisArrayCommands.arscan(K key,
long start,
long end)
Scan populated entries in a range, returning index/value pairs.
|
List<IndexedValue<V>> |
RedisArrayCommands.arscan(K key,
long start,
long end,
long limit)
Scan populated entries in a range with a limit, returning index/value pairs.
|
| Modifier and Type | Method and Description |
|---|---|
AsyncExecutions<List<IndexedValue<V>>> |
NodeSelectionArrayAsyncCommands.argrepWithValues(K key,
ArGrepArgs grepArgs)
Search for elements matching predicates, returning index/value pairs.
|
AsyncExecutions<List<IndexedValue<V>>> |
NodeSelectionArrayAsyncCommands.arscan(K key,
long start,
long end)
Scan populated entries in a range, returning index/value pairs.
|
AsyncExecutions<List<IndexedValue<V>>> |
NodeSelectionArrayAsyncCommands.arscan(K key,
long start,
long end,
long limit)
Scan populated entries in a range with a limit, returning index/value pairs.
|
| Modifier and Type | Method and Description |
|---|---|
Executions<List<IndexedValue<V>>> |
NodeSelectionArrayCommands.argrepWithValues(K key,
ArGrepArgs grepArgs)
Search for elements matching predicates, returning index/value pairs.
|
Executions<List<IndexedValue<V>>> |
NodeSelectionArrayCommands.arscan(K key,
long start,
long end)
Scan populated entries in a range, returning index/value pairs.
|
Executions<List<IndexedValue<V>>> |
NodeSelectionArrayCommands.arscan(K key,
long start,
long end,
long limit)
Scan populated entries in a range with a limit, returning index/value pairs.
|
| Modifier and Type | Method and Description |
|---|---|
StreamingOutput.Subscriber<IndexedValue<V>> |
IndexedValueListOutput.getSubscriber() |
| Modifier and Type | Method and Description |
|---|---|
void |
IndexedValueListOutput.setSubscriber(StreamingOutput.Subscriber<IndexedValue<V>> subscriber) |
Copyright © 2026 lettuce.io. All rights reserved.