diff --git a/redisson/src/main/java/org/redisson/client/protocol/RedisCommands.java b/redisson/src/main/java/org/redisson/client/protocol/RedisCommands.java index 7c7909d40..2e38dcc06 100644 --- a/redisson/src/main/java/org/redisson/client/protocol/RedisCommands.java +++ b/redisson/src/main/java/org/redisson/client/protocol/RedisCommands.java @@ -461,6 +461,7 @@ public interface RedisCommands { RedisStrictCommand HLEN_LONG = new RedisStrictCommand("HLEN"); RedisCommand> HKEYS = new RedisCommand>("HKEYS", new MapKeyDecoder(new ObjectSetReplayDecoder())); + RedisCommand> HMGET = new RedisCommand>("HMGET", new ObjectListReplayDecoder()); RedisCommand HMSET = new RedisCommand("HMSET", new VoidReplayConvertor()); RedisCommand HGET = new RedisCommand("HGET", new MapValueDecoder()); RedisCommand HDEL = new RedisStrictCommand("HDEL");