Skip to content

Commit

Permalink
Merge branch 'master' of github.com:redisson/redisson
Browse files Browse the repository at this point in the history
  • Loading branch information
Nikita Koksharov committed Jun 10, 2022
2 parents a9a860b + 0cb834a commit 78dd3e4
Showing 1 changed file with 1 addition and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -461,6 +461,7 @@ public Object decode(List parts, State state) {
RedisStrictCommand<Long> HLEN_LONG = new RedisStrictCommand<Long>("HLEN");
RedisCommand<Set<Object>> HKEYS = new RedisCommand<Set<Object>>("HKEYS",
new MapKeyDecoder(new ObjectSetReplayDecoder()));
RedisCommand<List<Object>> HMGET = new RedisCommand<List<Object>>("HMGET", new ObjectListReplayDecoder<Object>());
RedisCommand<Void> HMSET = new RedisCommand<Void>("HMSET", new VoidReplayConvertor());
RedisCommand<Object> HGET = new RedisCommand<Object>("HGET", new MapValueDecoder());
RedisCommand<Long> HDEL = new RedisStrictCommand<Long>("HDEL");
Expand Down

0 comments on commit 78dd3e4

Please sign in to comment.