From d5e56288bd06bd615928f7dba49677bce100d68a Mon Sep 17 00:00:00 2001 From: Nikita Date: Mon, 13 Jul 2015 20:12:47 +0300 Subject: [PATCH] new commands added --- src/main/java/org/redisson/client/protocol/RedisCommands.java | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/main/java/org/redisson/client/protocol/RedisCommands.java b/src/main/java/org/redisson/client/protocol/RedisCommands.java index deee6857b..638faf645 100644 --- a/src/main/java/org/redisson/client/protocol/RedisCommands.java +++ b/src/main/java/org/redisson/client/protocol/RedisCommands.java @@ -44,9 +44,13 @@ public interface RedisCommands { RedisStrictCommand PERSIST = new RedisStrictCommand("PERSIST", new BooleanReplayConvertor()); RedisStrictCommand TTL = new RedisStrictCommand("TTL"); + RedisCommand RPOPLPUSH = new RedisCommand("RPOPLPUSH"); RedisCommand BRPOPLPUSH = new RedisCommand("BRPOPLPUSH"); RedisCommand BLPOP = new RedisCommand("BLPOP", new KeyValueObjectDecoder()); + RedisCommand RPOP = new RedisCommand("RPOP"); + RedisCommand LPUSH = new RedisCommand("LPUSH"); + RedisCommand> LRANGE = new RedisCommand>("LRANGE", new ObjectListReplayDecoder()); RedisCommand RPUSH = new RedisCommand("RPUSH"); RedisStrictCommand EVAL_BOOLEAN = new RedisStrictCommand("EVAL", new BooleanReplayConvertor());