| Package | Description |
|---|---|
| redis.clients.jedis | |
| redis.clients.jedis.args |
This package contains the classes that represent arguments of Redis core commands.
|
| redis.clients.jedis.commands |
This package contains the interfaces that contain methods representing Redis core commands.
|
| Modifier and Type | Method and Description |
|---|---|
Response<java.lang.Long> |
PipeliningBase.bitop(BitOP op,
byte[] destKey,
byte[]... srcKeys) |
long |
UnifiedJedis.bitop(BitOP op,
byte[] destKey,
byte[]... srcKeys) |
CommandObject<java.lang.Long> |
CommandObjects.bitop(BitOP op,
byte[] destKey,
byte[]... srcKeys) |
long |
Jedis.bitop(BitOP op,
byte[] destKey,
byte[]... srcKeys) |
Response<java.lang.Long> |
PipeliningBase.bitop(BitOP op,
java.lang.String destKey,
java.lang.String... srcKeys) |
long |
UnifiedJedis.bitop(BitOP op,
java.lang.String destKey,
java.lang.String... srcKeys) |
CommandObject<java.lang.Long> |
CommandObjects.bitop(BitOP op,
java.lang.String destKey,
java.lang.String... srcKeys) |
long |
Jedis.bitop(BitOP op,
java.lang.String destKey,
java.lang.String... srcKeys) |
| Modifier and Type | Method and Description |
|---|---|
static BitOP |
BitOP.valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static BitOP[] |
BitOP.values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
| Modifier and Type | Method and Description |
|---|---|
long |
BitBinaryCommands.bitop(BitOP op,
byte[] destKey,
byte[]... srcKeys)
Bitop Command Perform a bitwise operation
between multiple keys and store the result in the destKey.
|
Response<java.lang.Long> |
BitPipelineBinaryCommands.bitop(BitOP op,
byte[] destKey,
byte[]... srcKeys) |
Response<java.lang.Long> |
BitPipelineCommands.bitop(BitOP op,
java.lang.String destKey,
java.lang.String... srcKeys) |
long |
BitCommands.bitop(BitOP op,
java.lang.String destKey,
java.lang.String... srcKeys)
Bitop Command
Perform a bitwise operation between multiple keys (containing string values) and store the result in the destKey.
|
Copyright © 2025. All rights reserved.