|
|
|
@ -297,6 +297,7 @@ public interface RedisCommands {
|
|
|
|
|
RedisStrictCommand<Integer> GET_INTEGER = new RedisStrictCommand<Integer>("GET", new IntegerReplayConvertor(0));
|
|
|
|
|
RedisStrictCommand<Double> GET_DOUBLE = new RedisStrictCommand<Double>("GET", new DoubleNullSafeReplayConvertor());
|
|
|
|
|
RedisCommand<Object> GETSET = new RedisCommand<Object>("GETSET");
|
|
|
|
|
RedisCommand<Long> GETSET_LONG = new RedisCommand<>("GETSET", new LongReplayConvertor());
|
|
|
|
|
RedisCommand<Void> SET = new RedisCommand<Void>("SET", new VoidReplayConvertor());
|
|
|
|
|
RedisCommand<Void> APPEND = new RedisCommand<Void>("APPEND", new VoidReplayConvertor());
|
|
|
|
|
RedisCommand<Boolean> SET_BOOLEAN = new RedisCommand<Boolean>("SET", new BooleanNotNullReplayConvertor());
|
|
|
|
|