|
|
@ -208,6 +208,7 @@ public interface RedisCommands {
|
|
|
|
RedisStrictCommand<Long> DEL = new RedisStrictCommand<Long>("DEL");
|
|
|
|
RedisStrictCommand<Long> DEL = new RedisStrictCommand<Long>("DEL");
|
|
|
|
RedisStrictCommand<Long> DBSIZE = new RedisStrictCommand<Long>("DBSIZE");
|
|
|
|
RedisStrictCommand<Long> DBSIZE = new RedisStrictCommand<Long>("DBSIZE");
|
|
|
|
RedisStrictCommand<Boolean> DEL_BOOL = new RedisStrictCommand<Boolean>("DEL", new BooleanReplayConvertor());
|
|
|
|
RedisStrictCommand<Boolean> DEL_BOOL = new RedisStrictCommand<Boolean>("DEL", new BooleanReplayConvertor());
|
|
|
|
|
|
|
|
RedisStrictCommand<Boolean> DEL_OBJECTS = new RedisStrictCommand<Boolean>("DEL", new BooleanAmountReplayConvertor());
|
|
|
|
RedisStrictCommand<Void> DEL_VOID = new RedisStrictCommand<Void>("DEL", new VoidReplayConvertor());
|
|
|
|
RedisStrictCommand<Void> DEL_VOID = new RedisStrictCommand<Void>("DEL", new VoidReplayConvertor());
|
|
|
|
|
|
|
|
|
|
|
|
RedisCommand<Object> GET = new RedisCommand<Object>("GET");
|
|
|
|
RedisCommand<Object> GET = new RedisCommand<Object>("GET");
|
|
|
|