Interface BinaryScriptingCommands

  • All Known Implementing Classes:
    BinaryJedis, Jedis

    public interface BinaryScriptingCommands
    • 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[] sha1)
      • 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()