K - Key type.V - Value type.@Deprecated public interface RedisScriptingConnection<K,V>
| Modifier and Type | Method and Description |
|---|---|
<T> T |
eval(String script,
ScriptOutputType type,
K... keys)
Deprecated.
Execute a Lua script server side.
|
<T> T |
eval(String script,
ScriptOutputType type,
K[] keys,
V... values)
Deprecated.
Execute a Lua script server side.
|
<T> T |
evalsha(String digest,
ScriptOutputType type,
K... keys)
Deprecated.
Evaluates a script cached on the server side by its SHA1 digest
|
<T> T |
evalsha(String digest,
ScriptOutputType type,
K[] keys,
V... values)
Deprecated.
Execute a Lua script server side.
|
List<Boolean> |
scriptExists(String... digests)
Deprecated.
Check existence of scripts in the script cache.
|
String |
scriptFlush()
Deprecated.
Remove all the scripts from the script cache.
|
String |
scriptKill()
Deprecated.
Kill the script currently in execution.
|
String |
scriptLoad(V script)
Deprecated.
Load the specified Lua script into the script cache.
|
<T> T eval(String script, ScriptOutputType type, K... keys)
T - expected return typescript - Lua 5.1 script.type - output typekeys - key names<T> T eval(String script, ScriptOutputType type, K[] keys, V... values)
T - expected return typescript - Lua 5.1 script.type - the typekeys - the keysvalues - the values<T> T evalsha(String digest, ScriptOutputType type, K... keys)
T - expected return typedigest - SHA1 of the scripttype - the typekeys - the keys<T> T evalsha(String digest, ScriptOutputType type, K[] keys, V... values)
T - expected return typedigest - SHA1 of the scripttype - the typekeys - the keysvalues - the valuesList<Boolean> scriptExists(String... digests)
digests - script digestsString scriptFlush()
String scriptKill()
Copyright © 2016. All rights reserved.