public interface JedisClusterBinaryScriptingCommands
限定符和类型 | 方法和说明 |
---|---|
java.lang.Object |
eval(byte[] script,
byte[] sampleKey) |
java.lang.Object |
eval(byte[] script,
byte[] keyCount,
byte[]... params) |
java.lang.Object |
eval(byte[] script,
int keyCount,
byte[]... params) |
java.lang.Object |
eval(byte[] script,
java.util.List<byte[]> keys,
java.util.List<byte[]> args) |
java.lang.Object |
evalsha(byte[] sha1,
byte[] sampleKey) |
java.lang.Object |
evalsha(byte[] sha1,
int keyCount,
byte[]... params) |
java.lang.Object |
evalsha(byte[] sha1,
java.util.List<byte[]> keys,
java.util.List<byte[]> args) |
java.util.List<java.lang.Long> |
scriptExists(byte[] sampleKey,
byte[]... sha1) |
java.lang.String |
scriptFlush(byte[] sampleKey) |
java.lang.String |
scriptFlush(byte[] sampleKey,
FlushMode flushMode) |
java.lang.String |
scriptKill(byte[] sampleKey) |
byte[] |
scriptLoad(byte[] script,
byte[] sampleKey) |
java.lang.Object eval(byte[] script, byte[] keyCount, byte[]... params)
java.lang.Object eval(byte[] script, int keyCount, byte[]... params)
java.lang.Object eval(byte[] script, java.util.List<byte[]> keys, java.util.List<byte[]> args)
java.lang.Object eval(byte[] script, byte[] sampleKey)
script
- sampleKey
- Command will be executed in the node where the hash slot of this key is
assigned tojava.lang.Object evalsha(byte[] sha1, byte[] sampleKey)
sha1
- sampleKey
- Command will be executed in the node where the hash slot of this key is
assigned tojava.lang.Object evalsha(byte[] sha1, java.util.List<byte[]> keys, java.util.List<byte[]> args)
java.lang.Object evalsha(byte[] sha1, int keyCount, byte[]... params)
java.util.List<java.lang.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 tojava.lang.String scriptFlush(byte[] sampleKey)
sampleKey
- Command will be executed in the node where the hash slot of this key is
assigned tojava.lang.String scriptFlush(byte[] sampleKey, FlushMode flushMode)
sampleKey
- Command will be executed in the node where the hash slot of this key is
assigned toflushMode
- java.lang.String scriptKill(byte[] sampleKey)
sampleKey
- Command will be executed in the node where the hash slot of this key is
assigned to