From edad0bfea58b9685aa36efa87bdc781c6875623e Mon Sep 17 00:00:00 2001 From: anp13 Date: Fri, 3 Jun 2022 15:00:33 -0700 Subject: [PATCH] Add HMGET command to RedisCommands interface Signed-off-by: anp13 --- .../main/java/org/redisson/client/protocol/RedisCommands.java | 1 + 1 file changed, 1 insertion(+) 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");