|
|
|
@ -109,7 +109,8 @@ public interface RedisCommands {
|
|
|
|
|
RedisStrictCommand<String> SELECT = new RedisStrictCommand<String>("SELECT", new StringReplayDecoder());
|
|
|
|
|
RedisStrictCommand<Boolean> CLIENT_SETNAME = new RedisStrictCommand<Boolean>("CLIENT", "SETNAME", new BooleanReplayConvertor());
|
|
|
|
|
RedisStrictCommand<String> CLIENT_GETNAME = new RedisStrictCommand<String>("CLIENT", "GETNAME", new StringDataDecoder());
|
|
|
|
|
RedisStrictCommand<String> FLUSHDB = new RedisStrictCommand<String>("FLUSHDB");
|
|
|
|
|
RedisStrictCommand<Void> FLUSHDB = new RedisStrictCommand<Void>("FLUSHDB", new VoidReplayConvertor());
|
|
|
|
|
RedisStrictCommand<Void> FLUSHALL = new RedisStrictCommand<Void>("FLUSHALL", new VoidReplayConvertor());
|
|
|
|
|
|
|
|
|
|
RedisStrictCommand<List<String>> KEYS = new RedisStrictCommand<List<String>>("KEYS", new StringListReplayDecoder());
|
|
|
|
|
|
|
|
|
|