| 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<List<Boolean>> |
AbstractRedisAsyncCommands.bfInsert(K key,
BfInsertArgs insertArgs,
V... values) |
reactor.core.publisher.Flux<Value<Boolean>> |
AbstractRedisReactiveCommands.bfInsert(K key,
BfInsertArgs insertArgs,
V... values) |
RedisFuture<List<Boolean>> |
AbstractRedisAsyncCommands.bfInsert(K key,
BfInsertArgs insertArgs,
V value) |
reactor.core.publisher.Flux<Value<Boolean>> |
AbstractRedisReactiveCommands.bfInsert(K key,
BfInsertArgs insertArgs,
V value) |
| Modifier and Type | Method and Description |
|---|---|
RedisFuture<List<Boolean>> |
RedisBloomFilterAsyncCommands.bfInsert(K key,
BfInsertArgs insertArgs,
V... values)
Add one or more items to the Bloom Filter.
|
RedisFuture<List<Boolean>> |
RedisBloomFilterAsyncCommands.bfInsert(K key,
BfInsertArgs insertArgs,
V value)
Add an item to the Bloom Filter.
|
| Modifier and Type | Method and Description |
|---|---|
reactor.core.publisher.Flux<Value<Boolean>> |
RedisBloomFilterReactiveCommands.bfInsert(K key,
BfInsertArgs insertArgs,
V... values)
Add one or more items to the Bloom Filter.
|
reactor.core.publisher.Flux<Value<Boolean>> |
RedisBloomFilterReactiveCommands.bfInsert(K key,
BfInsertArgs insertArgs,
V value)
Add an item to the Bloom Filter.
|
| Modifier and Type | Method and Description |
|---|---|
List<Boolean> |
RedisBloomFilterCommands.bfInsert(K key,
BfInsertArgs insertArgs,
V... values)
Add one or more items to the Bloom Filter.
|
List<Boolean> |
RedisBloomFilterCommands.bfInsert(K key,
BfInsertArgs insertArgs,
V value)
Add an item to the Bloom Filter.
|
| Modifier and Type | Method and Description |
|---|---|
AsyncExecutions<List<Boolean>> |
NodeSelectionBloomFilterAsyncCommands.bfInsert(K key,
BfInsertArgs insertArgs,
V... values)
Add one or more items to the Bloom Filter.
|
AsyncExecutions<List<Boolean>> |
NodeSelectionBloomFilterAsyncCommands.bfInsert(K key,
BfInsertArgs insertArgs,
V value)
Add an item to the Bloom Filter.
|
| Modifier and Type | Method and Description |
|---|---|
Executions<List<Boolean>> |
NodeSelectionBloomFilterCommands.bfInsert(K key,
BfInsertArgs insertArgs,
V... values)
Add one or more items to the Bloom Filter.
|
Executions<List<Boolean>> |
NodeSelectionBloomFilterCommands.bfInsert(K key,
BfInsertArgs insertArgs,
V value)
Add an item to the Bloom Filter.
|
| Modifier and Type | Method and Description |
|---|---|
BfInsertArgs |
BfInsertArgs.capacity(long capacity)
Set the desired capacity of the filter.
|
static BfInsertArgs |
BfInsertArgs.Builder.capacity(long capacity)
Creates a new
BfInsertArgs and sets the desired capacity of the filter. |
BfInsertArgs |
BfInsertArgs.defaults()
Set the default settings.
|
static BfInsertArgs |
BfInsertArgs.Builder.defaults()
Creates a new
BfInsertArgs with default settings. |
BfInsertArgs |
BfInsertArgs.error(double error)
Set the desired error rate of the filter.
|
static BfInsertArgs |
BfInsertArgs.Builder.error(double error)
Creates a new
BfInsertArgs and sets the desired error rate of the filter. |
BfInsertArgs |
BfInsertArgs.expansion(long expansion)
Set the expansion rate of the filter.
|
static BfInsertArgs |
BfInsertArgs.Builder.expansion(long expansion)
Creates a new
BfInsertArgs and sets the expansion rate of the filter. |
BfInsertArgs |
BfInsertArgs.noCreate()
Set the no create flag.
|
static BfInsertArgs |
BfInsertArgs.Builder.noCreate()
Creates a new
BfInsertArgs and sets the no create flag. |
BfInsertArgs |
BfInsertArgs.nonScaling()
Set the non scaling flag.
|
static BfInsertArgs |
BfInsertArgs.Builder.nonScaling()
Creates a new
BfInsertArgs and sets the non scaling flag. |
Copyright © 2026 lettuce.io. All rights reserved.