| 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.probabilistic.arguments |
| Modifier and Type | Method and Description |
|---|---|
RedisFuture<String> |
AbstractRedisAsyncCommands.cfReserve(K key,
long capacity,
CfReserveArgs args) |
reactor.core.publisher.Mono<String> |
AbstractRedisReactiveCommands.cfReserve(K key,
long capacity,
CfReserveArgs args) |
| Modifier and Type | Method and Description |
|---|---|
RedisFuture<String> |
RedisCuckooFilterAsyncCommands.cfReserve(K key,
long capacity,
CfReserveArgs args)
Creates an empty Cuckoo filter with a single sub-filter for the initial specified capacity.
|
| Modifier and Type | Method and Description |
|---|---|
reactor.core.publisher.Mono<String> |
RedisCuckooFilterReactiveCommands.cfReserve(K key,
long capacity,
CfReserveArgs args)
Creates an empty Cuckoo filter with a single sub-filter for the initial specified capacity.
|
| Modifier and Type | Method and Description |
|---|---|
String |
RedisCuckooFilterCommands.cfReserve(K key,
long capacity,
CfReserveArgs args)
Creates an empty Cuckoo filter with a single sub-filter for the initial specified capacity.
|
| Modifier and Type | Method and Description |
|---|---|
AsyncExecutions<String> |
NodeSelectionCuckooFilterAsyncCommands.cfReserve(K key,
long capacity,
CfReserveArgs args)
Creates an empty Cuckoo filter with a single sub-filter for the initial specified capacity.
|
| Modifier and Type | Method and Description |
|---|---|
Executions<String> |
NodeSelectionCuckooFilterCommands.cfReserve(K key,
long capacity,
CfReserveArgs args)
Creates an empty Cuckoo filter with a single sub-filter for the initial specified capacity.
|
| Modifier and Type | Method and Description |
|---|---|
CfReserveArgs |
CfReserveArgs.bucketSize(long bucketSize)
Sets the bucket size.
|
static CfReserveArgs |
CfReserveArgs.Builder.bucketSize(long bucketSize)
Creates a new
CfReserveArgs and sets the bucket size. |
CfReserveArgs |
CfReserveArgs.expansion(long expansion)
Sets the expansion rate of the filter.
|
static CfReserveArgs |
CfReserveArgs.Builder.expansion(long expansion)
Creates a new
CfReserveArgs and sets the expansion rate of the filter. |
CfReserveArgs |
CfReserveArgs.maxIterations(long maxIterations)
Sets the max iterations.
|
static CfReserveArgs |
CfReserveArgs.Builder.maxIterations(long maxIterations)
Creates a new
CfReserveArgs and sets the max iterations. |
Copyright © 2026 lettuce.io. All rights reserved.