Interface MultiKeyBinaryCommands

  • All Known Implementing Classes:
    BinaryJedis, Jedis

    public interface MultiKeyBinaryCommands
    • Method Detail

      • del

        Long del​(byte[]... keys)
      • unlink

        Long unlink​(byte[]... keys)
      • exists

        Long exists​(byte[]... keys)
      • blpop

        List<byte[]> blpop​(int timeout,
                           byte[]... keys)
      • brpop

        List<byte[]> brpop​(int timeout,
                           byte[]... keys)
      • blpop

        List<byte[]> blpop​(byte[]... args)
      • brpop

        List<byte[]> brpop​(byte[]... args)
      • keys

        Set<byte[]> keys​(byte[] pattern)
      • mget

        List<byte[]> mget​(byte[]... keys)
      • mset

        String mset​(byte[]... keysvalues)
      • msetnx

        Long msetnx​(byte[]... keysvalues)
      • rename

        String rename​(byte[] oldkey,
                      byte[] newkey)
      • renamenx

        Long renamenx​(byte[] oldkey,
                      byte[] newkey)
      • rpoplpush

        byte[] rpoplpush​(byte[] srckey,
                         byte[] dstkey)
      • sdiff

        Set<byte[]> sdiff​(byte[]... keys)
      • sdiffstore

        Long sdiffstore​(byte[] dstkey,
                        byte[]... keys)
      • sinter

        Set<byte[]> sinter​(byte[]... keys)
      • sinterstore

        Long sinterstore​(byte[] dstkey,
                         byte[]... keys)
      • smove

        Long smove​(byte[] srckey,
                   byte[] dstkey,
                   byte[] member)
      • sort

        Long sort​(byte[] key,
                  byte[] dstkey)
      • sunion

        Set<byte[]> sunion​(byte[]... keys)
      • sunionstore

        Long sunionstore​(byte[] dstkey,
                         byte[]... keys)
      • watch

        String watch​(byte[]... keys)
      • zinterstore

        Long zinterstore​(byte[] dstkey,
                         byte[]... sets)
      • zinterstore

        Long zinterstore​(byte[] dstkey,
                         ZParams params,
                         byte[]... sets)
      • zunionstore

        Long zunionstore​(byte[] dstkey,
                         byte[]... sets)
      • zunionstore

        Long zunionstore​(byte[] dstkey,
                         ZParams params,
                         byte[]... sets)
      • brpoplpush

        byte[] brpoplpush​(byte[] source,
                          byte[] destination,
                          int timeout)
      • publish

        Long publish​(byte[] channel,
                     byte[] message)
      • psubscribe

        void psubscribe​(BinaryJedisPubSub jedisPubSub,
                        byte[]... patterns)
      • randomBinaryKey

        byte[] randomBinaryKey()
      • bitop

        Long bitop​(BitOP op,
                   byte[] destKey,
                   byte[]... srcKeys)
      • pfmerge

        String pfmerge​(byte[] destkey,
                       byte[]... sourcekeys)
      • pfcount

        Long pfcount​(byte[]... keys)
      • touch

        Long touch​(byte[]... keys)
      • xread

        List<byte[]> xread​(int count,
                           long block,
                           Map<byte[],​byte[]> streams)
      • xreadGroup

        List<byte[]> xreadGroup​(byte[] groupname,
                                byte[] consumer,
                                int count,
                                long block,
                                boolean noAck,
                                Map<byte[],​byte[]> streams)