Package | Description |
---|---|
org.springframework.data.redis.core |
Core package for integrating Redis with Spring concepts.
|
org.springframework.data.redis.core.script |
Lua script execution abstraction.
|
org.springframework.data.redis.serializer |
Serialization/Deserialization package for converting Object to (and from) binary data.
|
Modifier and Type | Method and Description |
---|---|
<T> reactor.core.publisher.Flux<T> |
ReactiveRedisOperations.execute(RedisScript<T> script,
List<K> keys,
List<?> args,
RedisElementWriter<?> argsWriter,
RedisElementReader<T> resultReader)
Executes the given
RedisScript , using the provided RedisSerializer s to serialize the script
arguments and result. |
<T> reactor.core.publisher.Flux<T> |
ReactiveRedisTemplate.execute(RedisScript<T> script,
List<K> keys,
List<?> args,
RedisElementWriter<?> argsWriter,
RedisElementReader<T> resultReader) |
Modifier and Type | Method and Description |
---|---|
<T> reactor.core.publisher.Flux<T> |
ReactiveScriptExecutor.execute(RedisScript<T> script,
List<K> keys,
List<?> args,
RedisElementWriter<?> argsWriter,
RedisElementReader<T> resultReader)
Executes the given
RedisScript , using the provided RedisSerializer s to serialize the script
arguments and result. |
<T> reactor.core.publisher.Flux<T> |
DefaultReactiveScriptExecutor.execute(RedisScript<T> script,
List<K> keys,
List<?> args,
RedisElementWriter<?> argsWriter,
RedisElementReader<T> resultReader) |
protected ByteBuffer[] |
DefaultReactiveScriptExecutor.keysAndArgs(RedisElementWriter argsWriter,
List<K> keys,
List<?> args) |
Modifier and Type | Method and Description |
---|---|
static <T> RedisElementWriter<T> |
RedisElementWriter.from(RedisSerializer<T> serializer)
Create new
RedisElementWriter using given RedisSerializer . |
RedisElementWriter<T> |
RedisSerializationContext.SerializationPair.getWriter() |
Copyright © 2011–2023 Pivotal Software, Inc.. All rights reserved.