|
|
@ -143,7 +143,8 @@ public interface RedisCommands {
|
|
|
|
RedisCommand<Boolean> LREM_SINGLE = new RedisCommand<Boolean>("LREM", new BooleanReplayConvertor(), 3);
|
|
|
|
RedisCommand<Boolean> LREM_SINGLE = new RedisCommand<Boolean>("LREM", new BooleanReplayConvertor(), 3);
|
|
|
|
RedisStrictCommand<Long> LREM = new RedisStrictCommand<Long>("LREM", 3);
|
|
|
|
RedisStrictCommand<Long> LREM = new RedisStrictCommand<Long>("LREM", 3);
|
|
|
|
RedisCommand<Object> LINDEX = new RedisCommand<Object>("LINDEX");
|
|
|
|
RedisCommand<Object> LINDEX = new RedisCommand<Object>("LINDEX");
|
|
|
|
RedisCommand<Integer> LINSERT = new RedisCommand<Integer>("LINSERT", new IntegerReplayConvertor(), 3, ValueType.OBJECTS);
|
|
|
|
RedisCommand<Object> LINSERT = new RedisCommand<Object>("LINSERT", 3, ValueType.OBJECTS);
|
|
|
|
|
|
|
|
RedisCommand<Integer> LINSERT_INT = new RedisCommand<Integer>("LINSERT", new IntegerReplayConvertor(), 3, ValueType.OBJECTS);
|
|
|
|
RedisStrictCommand<Integer> LLEN_INT = new RedisStrictCommand<Integer>("LLEN", new IntegerReplayConvertor());
|
|
|
|
RedisStrictCommand<Integer> LLEN_INT = new RedisStrictCommand<Integer>("LLEN", new IntegerReplayConvertor());
|
|
|
|
RedisStrictCommand<Long> LLEN = new RedisStrictCommand<Long>("LLEN");
|
|
|
|
RedisStrictCommand<Long> LLEN = new RedisStrictCommand<Long>("LLEN");
|
|
|
|
RedisStrictCommand<Void> LTRIM = new RedisStrictCommand<Void>("LTRIM", new VoidReplayConvertor());
|
|
|
|
RedisStrictCommand<Void> LTRIM = new RedisStrictCommand<Void>("LTRIM", new VoidReplayConvertor());
|
|
|
|