Package redis.clients.jedis.commands
Interface BinaryScriptingCommands
-
- All Known Implementing Classes:
BinaryJedis,Jedis
public interface BinaryScriptingCommands
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Objecteval(byte[] script)Objecteval(byte[] script, byte[] keyCount, byte[]... params)Objecteval(byte[] script, int keyCount, byte[]... params)Objecteval(byte[] script, List<byte[]> keys, List<byte[]> args)Objectevalsha(byte[] sha1)Objectevalsha(byte[] sha1, int keyCount, byte[]... params)Objectevalsha(byte[] sha1, List<byte[]> keys, List<byte[]> args)List<Long>scriptExists(byte[]... sha1)StringscriptFlush()StringscriptKill()byte[]scriptLoad(byte[] script)
-
-
-
Method Detail
-
eval
Object eval(byte[] script, byte[] keyCount, byte[]... params)
-
eval
Object eval(byte[] script, int keyCount, byte[]... params)
-
eval
Object eval(byte[] script)
-
evalsha
Object evalsha(byte[] sha1)
-
evalsha
Object evalsha(byte[] sha1, int keyCount, byte[]... params)
-
scriptLoad
byte[] scriptLoad(byte[] script)
-
scriptFlush
String scriptFlush()
-
scriptKill
String scriptKill()
-
-