|
|
|
@ -32,6 +32,7 @@ import org.redisson.client.protocol.convertor.BooleanNullReplayConvertor;
|
|
|
|
|
import org.redisson.client.protocol.convertor.BooleanNullSafeReplayConvertor;
|
|
|
|
|
import org.redisson.client.protocol.convertor.BooleanNumberReplayConvertor;
|
|
|
|
|
import org.redisson.client.protocol.convertor.BooleanReplayConvertor;
|
|
|
|
|
import org.redisson.client.protocol.convertor.DoubleNullSafeReplayConvertor;
|
|
|
|
|
import org.redisson.client.protocol.convertor.DoubleReplayConvertor;
|
|
|
|
|
import org.redisson.client.protocol.convertor.IntegerReplayConvertor;
|
|
|
|
|
import org.redisson.client.protocol.convertor.KeyValueConvertor;
|
|
|
|
@ -133,7 +134,7 @@ public interface RedisCommands {
|
|
|
|
|
RedisCommand<List<ScoredEntry<Object>>> ZRANGE_ENTRY = new RedisCommand<List<ScoredEntry<Object>>>("ZRANGE", new ScoredSortedSetReplayDecoder<Object>());
|
|
|
|
|
RedisCommand<List<ScoredEntry<Object>>> ZRANGEBYSCORE_ENTRY = new RedisCommand<List<ScoredEntry<Object>>>("ZRANGEBYSCORE", new ScoredSortedSetReplayDecoder<Object>());
|
|
|
|
|
RedisCommand<ListScanResult<Object>> ZSCAN = new RedisCommand<ListScanResult<Object>>("ZSCAN", new ListMultiDecoder(new LongMultiDecoder(), new ScoredSortedSetScanDecoder<Object>(), new ScoredSortedSetScanReplayDecoder()));
|
|
|
|
|
RedisStrictCommand<Double> ZINCRBY = new RedisStrictCommand<Double>("ZINCRBY", new DoubleReplayConvertor());
|
|
|
|
|
RedisStrictCommand<Double> ZINCRBY = new RedisStrictCommand<Double>("ZINCRBY", new DoubleNullSafeReplayConvertor());
|
|
|
|
|
|
|
|
|
|
RedisCommand<ListScanResult<String>> SCAN = new RedisCommand<ListScanResult<String>>("SCAN", new ListMultiDecoder(new LongMultiDecoder(), new ObjectListReplayDecoder<String>(), new ListScanResultReplayDecoder()));
|
|
|
|
|
RedisStrictCommand<String> RANDOM_KEY = new RedisStrictCommand<String>("RANDOMKEY", new StringDataDecoder());
|
|
|
|
@ -221,7 +222,9 @@ public interface RedisCommands {
|
|
|
|
|
RedisStrictCommand<String> EVAL_STRING = new RedisStrictCommand<String>("EVAL", new StringReplayDecoder());
|
|
|
|
|
RedisStrictCommand<String> EVAL_STRING_DATA = new RedisStrictCommand<String>("EVAL", new StringDataDecoder());
|
|
|
|
|
RedisStrictCommand<Integer> EVAL_INTEGER = new RedisStrictCommand<Integer>("EVAL", new IntegerReplayConvertor());
|
|
|
|
|
RedisStrictCommand<Double> EVAL_DOUBLE = new RedisStrictCommand<Double>("EVAL", new DoubleNullSafeReplayConvertor());
|
|
|
|
|
RedisStrictCommand<Long> EVAL_LONG = new RedisStrictCommand<Long>("EVAL");
|
|
|
|
|
RedisStrictCommand<Long> EVAL_LONG_SAFE = new RedisStrictCommand<Long>("EVAL", new LongReplayConvertor());
|
|
|
|
|
RedisStrictCommand<Void> EVAL_VOID = new RedisStrictCommand<Void>("EVAL", new VoidReplayConvertor());
|
|
|
|
|
RedisCommand<List<Object>> EVAL_LIST = new RedisCommand<List<Object>>("EVAL", new ObjectListReplayDecoder<Object>());
|
|
|
|
|
RedisCommand<Set<Object>> EVAL_SET = new RedisCommand<Set<Object>>("EVAL", new ObjectSetReplayDecoder<Object>());
|
|
|
|
@ -235,7 +238,7 @@ public interface RedisCommands {
|
|
|
|
|
|
|
|
|
|
RedisStrictCommand<Long> INCR = new RedisStrictCommand<Long>("INCR");
|
|
|
|
|
RedisStrictCommand<Long> INCRBY = new RedisStrictCommand<Long>("INCRBY");
|
|
|
|
|
RedisStrictCommand<Double> INCRBYFLOAT = new RedisStrictCommand<Double>("INCRBYFLOAT", new DoubleReplayConvertor());
|
|
|
|
|
RedisStrictCommand<Double> INCRBYFLOAT = new RedisStrictCommand<Double>("INCRBYFLOAT", new DoubleNullSafeReplayConvertor());
|
|
|
|
|
RedisStrictCommand<Long> DECR = new RedisStrictCommand<Long>("DECR");
|
|
|
|
|
|
|
|
|
|
RedisStrictCommand<Void> AUTH = new RedisStrictCommand<Void>("AUTH", new VoidReplayConvertor());
|
|
|
|
@ -281,6 +284,7 @@ public interface RedisCommands {
|
|
|
|
|
RedisCommand<Object> GET = new RedisCommand<Object>("GET");
|
|
|
|
|
RedisStrictCommand<Long> GET_LONG = new RedisStrictCommand<Long>("GET", new LongReplayConvertor());
|
|
|
|
|
RedisStrictCommand<Integer> GET_INTEGER = new RedisStrictCommand<Integer>("GET", new IntegerReplayConvertor());
|
|
|
|
|
RedisStrictCommand<Double> GET_DOUBLE = new RedisStrictCommand<Double>("GET", new DoubleNullSafeReplayConvertor());
|
|
|
|
|
RedisCommand<Object> GETSET = new RedisCommand<Object>("GETSET");
|
|
|
|
|
RedisCommand<Object> GETRANGE = new RedisCommand<Object>("GETRANGE");
|
|
|
|
|
RedisCommand<Object> APPEND = new RedisCommand<Object>("APPEND");
|
|
|
|
|