From c298483768e6675399fc28cb0ff875b688cdf287 Mon Sep 17 00:00:00 2001 From: Nikita Date: Fri, 20 Nov 2015 15:33:13 +0300 Subject: [PATCH] RedisCommands.INFO_PERSISTENCE added --- src/main/java/org/redisson/client/protocol/RedisCommands.java | 1 + 1 file changed, 1 insertion(+) diff --git a/src/main/java/org/redisson/client/protocol/RedisCommands.java b/src/main/java/org/redisson/client/protocol/RedisCommands.java index b7bbdde8d..2dc33f34b 100644 --- a/src/main/java/org/redisson/client/protocol/RedisCommands.java +++ b/src/main/java/org/redisson/client/protocol/RedisCommands.java @@ -204,4 +204,5 @@ public interface RedisCommands { ); RedisStrictCommand INFO_REPLICATION = new RedisStrictCommand("INFO", "replication", new StringDataDecoder()); + RedisStrictCommand> INFO_PERSISTENCE = new RedisStrictCommand>("INFO", "persistence", new StringMapDataDecoder()); }