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.
|
Modifier and Type | Method and Description |
---|---|
BitFieldArgs |
BitFieldArgs.get()
Adds a new
GET subcommand using offset 0 and the field type of the previous command. |
BitFieldArgs |
BitFieldArgs.get(BitFieldArgs.BitFieldType bitFieldType)
Adds a new
GET subcommand using offset 0 . |
BitFieldArgs |
BitFieldArgs.get(BitFieldArgs.BitFieldType bitFieldType,
BitFieldArgs.Offset offset)
Adds a new
GET subcommand. |
static BitFieldArgs |
BitFieldArgs.Builder.get(BitFieldArgs.BitFieldType bitFieldType,
BitFieldArgs.Offset offset)
Create a new
GET subcommand. |
BitFieldArgs |
BitFieldArgs.get(BitFieldArgs.BitFieldType bitFieldType,
int offset)
Adds a new
GET subcommand. |
static BitFieldArgs |
BitFieldArgs.Builder.get(BitFieldArgs.BitFieldType bitFieldType,
int offset)
Create a new
GET subcommand. |
BitFieldArgs |
BitFieldArgs.get(int offset)
Adds a new
GET subcommand using the field type of the previous command. |
BitFieldArgs |
BitFieldArgs.incrBy(BitFieldArgs.BitFieldType bitFieldType,
BitFieldArgs.Offset offset,
long value)
Adds a new
INCRBY subcommand. |
static BitFieldArgs |
BitFieldArgs.Builder.incrBy(BitFieldArgs.BitFieldType bitFieldType,
BitFieldArgs.Offset offset,
long value)
Create a new
INCRBY subcommand. |
BitFieldArgs |
BitFieldArgs.incrBy(BitFieldArgs.BitFieldType bitFieldType,
int offset,
long value)
Adds a new
INCRBY subcommand. |
static BitFieldArgs |
BitFieldArgs.Builder.incrBy(BitFieldArgs.BitFieldType bitFieldType,
int offset,
long value)
Create a new
INCRBY subcommand. |
BitFieldArgs |
BitFieldArgs.incrBy(BitFieldArgs.BitFieldType bitFieldType,
long value)
Adds a new
INCRBY subcommand using offset 0 . |
BitFieldArgs |
BitFieldArgs.incrBy(int offset,
long value)
Adds a new
INCRBY subcommand using the field type of the previous command. |
BitFieldArgs |
BitFieldArgs.incrBy(long value)
Adds a new
INCRBY subcommand using offset 0 and the field type of the previous command. |
BitFieldArgs |
BitFieldArgs.overflow(BitFieldArgs.OverflowType overflowType)
Adds a new
OVERFLOW subcommand. |
static BitFieldArgs |
BitFieldArgs.Builder.overflow(BitFieldArgs.OverflowType overflowType)
Adds a new
OVERFLOW subcommand. |
BitFieldArgs |
BitFieldArgs.set(BitFieldArgs.BitFieldType bitFieldType,
BitFieldArgs.Offset offset,
long value)
Adds a new
SET subcommand. |
static BitFieldArgs |
BitFieldArgs.Builder.set(BitFieldArgs.BitFieldType bitFieldType,
BitFieldArgs.Offset offset,
long value)
Create a new
SET subcommand. |
BitFieldArgs |
BitFieldArgs.set(BitFieldArgs.BitFieldType bitFieldType,
int offset,
long value)
Adds a new
SET subcommand. |
static BitFieldArgs |
BitFieldArgs.Builder.set(BitFieldArgs.BitFieldType bitFieldType,
int offset,
long value)
Create a new
SET subcommand. |
BitFieldArgs |
BitFieldArgs.set(BitFieldArgs.BitFieldType bitFieldType,
long value)
Adds a new
SET subcommand using offset 0 . |
BitFieldArgs |
BitFieldArgs.set(int offset,
long value)
Adds a new
SET subcommand using the field type of the previous command. |
BitFieldArgs |
BitFieldArgs.set(long value)
Adds a new
SET subcommand using offset 0 and the field type of the previous command. |
Modifier and Type | Method and Description |
---|---|
RedisFuture<List<Long>> |
AbstractRedisAsyncCommands.bitfield(K key,
BitFieldArgs bitFieldArgs) |
Flux<Value<Long>> |
AbstractRedisReactiveCommands.bitfield(K key,
BitFieldArgs args) |
Modifier and Type | Method and Description |
---|---|
RedisFuture<List<Long>> |
RedisStringAsyncCommands.bitfield(K key,
BitFieldArgs bitFieldArgs)
Execute
BITFIELD with its subcommands. |
Modifier and Type | Method and Description |
---|---|
Flux<Value<Long>> |
RedisStringReactiveCommands.bitfield(K key,
BitFieldArgs bitFieldArgs)
Execute
BITFIELD with its subcommands. |
Modifier and Type | Method and Description |
---|---|
List<Long> |
RedisStringCommands.bitfield(K key,
BitFieldArgs bitFieldArgs)
Execute
BITFIELD with its subcommands. |
Modifier and Type | Method and Description |
---|---|
AsyncExecutions<List<Long>> |
NodeSelectionStringAsyncCommands.bitfield(K key,
BitFieldArgs bitFieldArgs)
Execute
BITFIELD with its subcommands. |
Modifier and Type | Method and Description |
---|---|
Executions<List<Long>> |
NodeSelectionStringCommands.bitfield(K key,
BitFieldArgs bitFieldArgs)
Execute
BITFIELD with its subcommands. |
Copyright © 2023 lettuce.io. All rights reserved.