redis.clients.jedis
Interface BinaryScriptingCommands

All Known Implementing Classes:
BinaryJedis, Jedis

public interface BinaryScriptingCommands


Method Summary
 Object eval(byte[] script)
           
 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[] script)
           
 Object evalsha(byte[] sha1, int keyCount, byte[]... params)
           
 Object evalsha(byte[] sha1, List<byte[]> keys, List<byte[]> args)
           
 List<Long> scriptExists(byte[]... sha1)
           
 String scriptFlush()
           
 String scriptKill()
           
 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,
            List<byte[]> keys,
            List<byte[]> args)

eval

Object eval(byte[] script)

evalsha

Object evalsha(byte[] script)

evalsha

Object evalsha(byte[] sha1,
               List<byte[]> keys,
               List<byte[]> args)

evalsha

Object evalsha(byte[] sha1,
               int keyCount,
               byte[]... params)

scriptExists

List<Long> scriptExists(byte[]... sha1)

scriptLoad

byte[] scriptLoad(byte[] script)

scriptFlush

String scriptFlush()

scriptKill

String scriptKill()


Copyright © 2014. All rights reserved.