public interface JedisClusterScriptingCommands
Modifier and Type | Method and Description |
---|---|
Object |
eval(String script,
int keyCount,
String... params) |
Object |
eval(String script,
List<String> keys,
List<String> args) |
Object |
eval(String script,
String sampleKey) |
Object |
evalsha(String sha1,
int keyCount,
String... params) |
Object |
evalsha(String sha1,
List<String> keys,
List<String> args) |
Object |
evalsha(String sha1,
String sampleKey) |
List<Boolean> |
scriptExists(String sampleKey,
String... sha1) |
Boolean |
scriptExists(String sha1,
String sampleKey) |
String |
scriptFlush(String sampleKey) |
String |
scriptKill(String sampleKey) |
String |
scriptLoad(String script,
String sampleKey) |
Object eval(String script, String sampleKey)
script
- sampleKey
- Command will be executed in the node where the hash slot of this key is
assigned toObject evalsha(String sha1, String sampleKey)
sha1
- sampleKey
- Command will be executed in the node where the hash slot of this key is
assigned toBoolean scriptExists(String sha1, String sampleKey)
sha1
- sampleKey
- Command will be executed in the node where the hash slot of this key is
assigned toList<Boolean> scriptExists(String sampleKey, String... sha1)
sampleKey
- Command will be executed in the node where the hash slot of this key is
assigned tosha1
- String scriptLoad(String script, String sampleKey)
script
- sampleKey
- Command will be executed in the node where the hash slot of this key is
assigned toString scriptFlush(String sampleKey)
sampleKey
- Command will be executed in the node where the hash slot of this key is
assigned toCopyright © 2021. All rights reserved.