public interface JedisClusterBinaryScriptingCommands
Modifier and Type | Method and Description |
---|---|
Object |
eval(byte[] script,
byte[] sampleKey) |
Object |
eval(byte[] script,
byte[] keyCount,
byte[]... params) |
Object |
eval(byte[] script,
int keyCount,
byte[]... params) |
Object |
eval(byte[] script,
List<byte[]> keys,
List<byte[]> args) |
Object |
evalsha(byte[] sha1,
byte[] sampleKey) |
Object |
evalsha(byte[] sha1,
int keyCount,
byte[]... params) |
Object |
evalsha(byte[] sha1,
List<byte[]> keys,
List<byte[]> args) |
List<Long> |
scriptExists(byte[] sampleKey,
byte[]... sha1) |
String |
scriptFlush(byte[] sampleKey) |
String |
scriptFlush(byte[] sampleKey,
FlushMode flushMode) |
String |
scriptKill(byte[] sampleKey) |
byte[] |
scriptLoad(byte[] script,
byte[] sampleKey) |
Object eval(byte[] script, byte[] keyCount, byte[]... params)
Object eval(byte[] script, int keyCount, byte[]... params)
Object eval(byte[] script, byte[] sampleKey)
script
- sampleKey
- Command will be executed in the node where the hash slot of this key is
assigned toObject evalsha(byte[] sha1, byte[] sampleKey)
sha1
- sampleKey
- Command will be executed in the node where the hash slot of this key is
assigned toObject evalsha(byte[] sha1, int keyCount, byte[]... params)
List<Long> scriptExists(byte[] sampleKey, byte[]... sha1)
sampleKey
- Command will be executed in the node where the hash slot of this key is
assigned tosha1
- byte[] scriptLoad(byte[] script, byte[] sampleKey)
script
- sampleKey
- Command will be executed in the node where the hash slot of this key is
assigned toString scriptFlush(byte[] sampleKey)
sampleKey
- Command will be executed in the node where the hash slot of this key is
assigned toString scriptFlush(byte[] sampleKey, FlushMode flushMode)
sampleKey
- Command will be executed in the node where the hash slot of this key is
assigned toflushMode
- String scriptKill(byte[] sampleKey)
sampleKey
- Command will be executed in the node where the hash slot of this key is
assigned toCopyright © 2022. All rights reserved.