|
|
|
@ -57,7 +57,7 @@ import org.redisson.client.protocol.decoder.ObjectMapEntryReplayDecoder;
|
|
|
|
|
import org.redisson.client.protocol.decoder.ObjectMapJoinDecoder;
|
|
|
|
|
import org.redisson.client.protocol.decoder.ObjectMapReplayDecoder;
|
|
|
|
|
import org.redisson.client.protocol.decoder.ObjectSetReplayDecoder;
|
|
|
|
|
import org.redisson.client.protocol.decoder.QueueObjectDecoder;
|
|
|
|
|
import org.redisson.client.protocol.decoder.ListObjectDecoder;
|
|
|
|
|
import org.redisson.client.protocol.decoder.ScoredSortedSetPolledObjectDecoder;
|
|
|
|
|
import org.redisson.client.protocol.decoder.ScoredSortedSetReplayDecoder;
|
|
|
|
|
import org.redisson.client.protocol.decoder.ScoredSortedSetScanDecoder;
|
|
|
|
@ -143,7 +143,7 @@ public interface RedisCommands {
|
|
|
|
|
|
|
|
|
|
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");
|
|
|
|
|
RedisStrictCommand<String> PING = new RedisStrictCommand<String>("PING");
|
|
|
|
|
RedisCommand<String> PING = new RedisCommand<String>("PING", new ListObjectDecoder<String>(0));
|
|
|
|
|
RedisStrictCommand<Boolean> PING_BOOL = new RedisStrictCommand<Boolean>("PING", new BooleanNotNullReplayConvertor());
|
|
|
|
|
|
|
|
|
|
RedisStrictCommand<Void> UNWATCH = new RedisStrictCommand<Void>("UNWATCH", new VoidReplayConvertor());
|
|
|
|
@ -192,8 +192,8 @@ public interface RedisCommands {
|
|
|
|
|
|
|
|
|
|
RedisCommand<Object> RPOPLPUSH = new RedisCommand<Object>("RPOPLPUSH");
|
|
|
|
|
RedisCommand<Object> BRPOPLPUSH = new RedisCommand<Object>("BRPOPLPUSH");
|
|
|
|
|
RedisCommand<Object> BLPOP_VALUE = new RedisCommand<Object>("BLPOP", new QueueObjectDecoder());
|
|
|
|
|
RedisCommand<Object> BRPOP_VALUE = new RedisCommand<Object>("BRPOP", new QueueObjectDecoder());
|
|
|
|
|
RedisCommand<Object> BLPOP_VALUE = new RedisCommand<Object>("BLPOP", new ListObjectDecoder<Object>(1));
|
|
|
|
|
RedisCommand<Object> BRPOP_VALUE = new RedisCommand<Object>("BRPOP", new ListObjectDecoder<Object>(1));
|
|
|
|
|
RedisCommand<Object> BZPOPMIN_VALUE = new RedisCommand<Object>("BZPOPMIN", new ScoredSortedSetPolledObjectDecoder());
|
|
|
|
|
RedisCommand<Object> BZPOPMAX_VALUE = new RedisCommand<Object>("BZPOPMAX", new ScoredSortedSetPolledObjectDecoder());
|
|
|
|
|
|
|
|
|
|