Package | Description |
---|---|
org.springframework.data.redis.connection |
Connection package providing low-level abstractions for interacting with
the various Redis 'drivers'/libraries.
|
org.springframework.data.redis.connection.jedis |
Connection package for Jedis library.
|
org.springframework.data.redis.connection.lettuce |
Connection package for Lettuce Redis client.
|
Modifier and Type | Method and Description |
---|---|
RedisStringCommands.BitOperation |
ReactiveStringCommands.BitOpCommand.getBitOp() |
static RedisStringCommands.BitOperation |
RedisStringCommands.BitOperation.valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static RedisStringCommands.BitOperation[] |
RedisStringCommands.BitOperation.values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
Modifier and Type | Method and Description |
---|---|
default reactor.core.publisher.Mono<Long> |
ReactiveStringCommands.bitOp(Collection<ByteBuffer> keys,
RedisStringCommands.BitOperation bitOp,
ByteBuffer destination)
Perform bitwise operations between strings.
|
Long |
RedisStringCommands.bitOp(RedisStringCommands.BitOperation op,
byte[] destination,
byte[]... keys)
Perform bitwise operations between strings.
|
Long |
DefaultStringRedisConnection.bitOp(RedisStringCommands.BitOperation op,
byte[] destination,
byte[]... keys) |
Long |
StringRedisConnection.bitOp(RedisStringCommands.BitOperation op,
String destination,
String... keys)
Perform bitwise operations between strings.
|
Long |
DefaultStringRedisConnection.bitOp(RedisStringCommands.BitOperation op,
String destination,
String... keys) |
static ReactiveStringCommands.BitOpCommand |
ReactiveStringCommands.BitOpCommand.perform(RedisStringCommands.BitOperation bitOp)
Creates a new
ReactiveStringCommands.BitOpCommand given a RedisStringCommands.BitOperation . |
Modifier and Type | Method and Description |
---|---|
Long |
JedisConnection.bitOp(RedisStringCommands.BitOperation op,
byte[] destination,
byte[]... keys) |
Long |
JedisClusterConnection.bitOp(RedisStringCommands.BitOperation op,
byte[] destination,
byte[]... keys) |
static redis.clients.jedis.BitOP |
JedisConverters.toBitOp(RedisStringCommands.BitOperation bitOp) |
Modifier and Type | Method and Description |
---|---|
Long |
LettuceConnection.bitOp(RedisStringCommands.BitOperation op,
byte[] destination,
byte[]... keys) |
Copyright © 2011-2016–2016 Pivotal Software, Inc.. All rights reserved.