Uses of Class
io.lettuce.core.ScriptOutputType
| 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.protocol |
Redis protocol layer abstraction.
|
-
Uses of ScriptOutputType in io.lettuce.core
Methods in io.lettuce.core that return ScriptOutputType Modifier and Type Method Description static ScriptOutputTypeScriptOutputType. valueOf(String name)Returns the enum constant of this type with the specified name.static ScriptOutputType[]ScriptOutputType. values()Returns an array containing the constants of this enum type, in the order they are declared.Methods in io.lettuce.core with parameters of type ScriptOutputType Modifier and Type Method Description <T> RedisFuture<T>AbstractRedisAsyncCommands. eval(byte[] script, ScriptOutputType type, K... keys)<T> RedisFuture<T>AbstractRedisAsyncCommands. eval(byte[] script, ScriptOutputType type, K[] keys, V... values)<T> RedisFuture<T>AbstractRedisAsyncCommands. eval(String script, ScriptOutputType type, K... keys)<T> RedisFuture<T>AbstractRedisAsyncCommands. eval(String script, ScriptOutputType type, K[] keys, V... values)<T> Flux<T>AbstractRedisReactiveCommands. eval(byte[] script, ScriptOutputType type, K... keys)<T> Flux<T>AbstractRedisReactiveCommands. eval(byte[] script, ScriptOutputType type, K[] keys, V... values)<T> Flux<T>AbstractRedisReactiveCommands. eval(String script, ScriptOutputType type, K... keys)<T> Flux<T>AbstractRedisReactiveCommands. eval(String script, ScriptOutputType type, K[] keys, V... values)<T> RedisFuture<T>AbstractRedisAsyncCommands. evalsha(String digest, ScriptOutputType type, K... keys)<T> RedisFuture<T>AbstractRedisAsyncCommands. evalsha(String digest, ScriptOutputType type, K[] keys, V... values)<T> Flux<T>AbstractRedisReactiveCommands. evalsha(String digest, ScriptOutputType type, K... keys)<T> Flux<T>AbstractRedisReactiveCommands. evalsha(String digest, ScriptOutputType type, K[] keys, V... values) -
Uses of ScriptOutputType in io.lettuce.core.api.async
Methods in io.lettuce.core.api.async with parameters of type ScriptOutputType Modifier and Type Method Description <T> RedisFuture<T>RedisScriptingAsyncCommands. eval(byte[] script, ScriptOutputType type, K... keys)Execute a Lua script server side.<T> RedisFuture<T>RedisScriptingAsyncCommands. eval(byte[] script, ScriptOutputType type, K[] keys, V... values)Execute a Lua script server side.<T> RedisFuture<T>RedisScriptingAsyncCommands. eval(String script, ScriptOutputType type, K... keys)Execute a Lua script server side.<T> RedisFuture<T>RedisScriptingAsyncCommands. eval(String script, ScriptOutputType type, K[] keys, V... values)Execute a Lua script server side.<T> RedisFuture<T>RedisScriptingAsyncCommands. evalsha(String digest, ScriptOutputType type, K... keys)Evaluates a script cached on the server side by its SHA1 digest.<T> RedisFuture<T>RedisScriptingAsyncCommands. evalsha(String digest, ScriptOutputType type, K[] keys, V... values)Execute a Lua script server side. -
Uses of ScriptOutputType in io.lettuce.core.api.reactive
Methods in io.lettuce.core.api.reactive with parameters of type ScriptOutputType Modifier and Type Method Description <T> Flux<T>RedisScriptingReactiveCommands. eval(byte[] script, ScriptOutputType type, K... keys)Execute a Lua script server side.<T> Flux<T>RedisScriptingReactiveCommands. eval(byte[] script, ScriptOutputType type, K[] keys, V... values)Execute a Lua script server side.<T> Flux<T>RedisScriptingReactiveCommands. eval(String script, ScriptOutputType type, K... keys)Execute a Lua script server side.<T> Flux<T>RedisScriptingReactiveCommands. eval(String script, ScriptOutputType type, K[] keys, V... values)Execute a Lua script server side.<T> Flux<T>RedisScriptingReactiveCommands. evalsha(String digest, ScriptOutputType type, K... keys)Evaluates a script cached on the server side by its SHA1 digest.<T> Flux<T>RedisScriptingReactiveCommands. evalsha(String digest, ScriptOutputType type, K[] keys, V... values)Execute a Lua script server side. -
Uses of ScriptOutputType in io.lettuce.core.api.sync
Methods in io.lettuce.core.api.sync with parameters of type ScriptOutputType Modifier and Type Method Description <T> TRedisScriptingCommands. eval(byte[] script, ScriptOutputType type, K... keys)Execute a Lua script server side.<T> TRedisScriptingCommands. eval(byte[] script, ScriptOutputType type, K[] keys, V... values)Execute a Lua script server side.<T> TRedisScriptingCommands. eval(String script, ScriptOutputType type, K... keys)Execute a Lua script server side.<T> TRedisScriptingCommands. eval(String script, ScriptOutputType type, K[] keys, V... values)Execute a Lua script server side.<T> TRedisScriptingCommands. evalsha(String digest, ScriptOutputType type, K... keys)Evaluates a script cached on the server side by its SHA1 digest.<T> TRedisScriptingCommands. evalsha(String digest, ScriptOutputType type, K[] keys, V... values)Execute a Lua script server side. -
Uses of ScriptOutputType in io.lettuce.core.cluster.api.async
Methods in io.lettuce.core.cluster.api.async with parameters of type ScriptOutputType Modifier and Type Method Description <T> AsyncExecutions<T>NodeSelectionScriptingAsyncCommands. eval(byte[] script, ScriptOutputType type, K... keys)Execute a Lua script server side.<T> AsyncExecutions<T>NodeSelectionScriptingAsyncCommands. eval(byte[] script, ScriptOutputType type, K[] keys, V... values)Execute a Lua script server side.<T> AsyncExecutions<T>NodeSelectionScriptingAsyncCommands. eval(String script, ScriptOutputType type, K... keys)Execute a Lua script server side.<T> AsyncExecutions<T>NodeSelectionScriptingAsyncCommands. eval(String script, ScriptOutputType type, K[] keys, V... values)Execute a Lua script server side.<T> AsyncExecutions<T>NodeSelectionScriptingAsyncCommands. evalsha(String digest, ScriptOutputType type, K... keys)Evaluates a script cached on the server side by its SHA1 digest.<T> AsyncExecutions<T>NodeSelectionScriptingAsyncCommands. evalsha(String digest, ScriptOutputType type, K[] keys, V... values)Execute a Lua script server side. -
Uses of ScriptOutputType in io.lettuce.core.cluster.api.sync
Methods in io.lettuce.core.cluster.api.sync with parameters of type ScriptOutputType Modifier and Type Method Description <T> Executions<T>NodeSelectionScriptingCommands. eval(byte[] script, ScriptOutputType type, K... keys)Execute a Lua script server side.<T> Executions<T>NodeSelectionScriptingCommands. eval(byte[] script, ScriptOutputType type, K[] keys, V... values)Execute a Lua script server side.<T> Executions<T>NodeSelectionScriptingCommands. eval(String script, ScriptOutputType type, K... keys)Execute a Lua script server side.<T> Executions<T>NodeSelectionScriptingCommands. eval(String script, ScriptOutputType type, K[] keys, V... values)Execute a Lua script server side.<T> Executions<T>NodeSelectionScriptingCommands. evalsha(String digest, ScriptOutputType type, K... keys)Evaluates a script cached on the server side by its SHA1 digest.<T> Executions<T>NodeSelectionScriptingCommands. evalsha(String digest, ScriptOutputType type, K[] keys, V... values)Execute a Lua script server side. -
Uses of ScriptOutputType in io.lettuce.core.protocol
Methods in io.lettuce.core.protocol with parameters of type ScriptOutputType Modifier and Type Method Description protected <T> CommandOutput<K,V,T>BaseRedisCommandBuilder. newScriptOutput(RedisCodec<K,V> codec, ScriptOutputType type)