refactoring

pull/5108/head
Nikita Koksharov 2 years ago
parent f770c86fe0
commit 2d049b32cc

@ -122,11 +122,7 @@ public class RedissonScoredSortedSet<V> extends RedissonExpirable implements RSc
} }
private <T> RFuture<T> poll(int from, int to, RedisCommand<?> command) { private <T> RFuture<T> poll(int from, int to, RedisCommand<?> command) {
return poll(getRawName(), from, to, command); return commandExecutor.evalWriteAsync(getRawName(), codec, command,
}
protected <T> RFuture<T> poll(String name, int from, int to, RedisCommand<?> command) {
return commandExecutor.evalWriteAsync(name, codec, command,
"local v = redis.call('zrange', KEYS[1], ARGV[1], ARGV[2]); " "local v = redis.call('zrange', KEYS[1], ARGV[1], ARGV[2]); "
+ "if #v > 0 then " + "if #v > 0 then "
+ "redis.call('zremrangebyrank', KEYS[1], ARGV[1], ARGV[2]); " + "redis.call('zremrangebyrank', KEYS[1], ARGV[1], ARGV[2]); "
@ -184,18 +180,14 @@ public class RedissonScoredSortedSet<V> extends RedissonExpirable implements RSc
} }
private <T> RFuture<T> pollEntry(int from, int to, RedisCommand<?> command) { private <T> RFuture<T> pollEntry(int from, int to, RedisCommand<?> command) {
return pollEntry(getRawName(), from, to, command); return commandExecutor.evalWriteAsync(getRawName(), codec, command,
}
protected final <T> RFuture<T> pollEntry(String name, int from, int to, RedisCommand<?> command) {
return commandExecutor.evalWriteAsync(name, codec, command,
"local v = redis.call('zrange', KEYS[1], ARGV[1], ARGV[2], 'withscores'); " "local v = redis.call('zrange', KEYS[1], ARGV[1], ARGV[2], 'withscores'); "
+ "if #v > 0 then " + "if #v > 0 then "
+ "redis.call('zremrangebyrank', KEYS[1], ARGV[1], ARGV[2]); " + "redis.call('zremrangebyrank', KEYS[1], ARGV[1], ARGV[2]); "
+ "return v; " + "return v; "
+ "end " + "end "
+ "return v;", + "return v;",
Collections.singletonList(name), from, to); Collections.singletonList(getRawName()), from, to);
} }
@Override @Override
@ -1322,7 +1314,8 @@ public class RedissonScoredSortedSet<V> extends RedissonExpirable implements RSc
@Override @Override
public RFuture<Integer> revRankAsync(V o) { public RFuture<Integer> revRankAsync(V o) {
return commandExecutor.readAsync(getRawName(), codec, RedisCommands.ZREVRANK_INT, getRawName(), encode(o)); String name = getRawName(o);
return commandExecutor.readAsync(name, codec, RedisCommands.ZREVRANK_INT, name, encode(o));
} }
@Override @Override
@ -1332,7 +1325,8 @@ public class RedissonScoredSortedSet<V> extends RedissonExpirable implements RSc
@Override @Override
public RFuture<RankedEntry<V>> revRankEntryAsync(V o) { public RFuture<RankedEntry<V>> revRankEntryAsync(V o) {
return commandExecutor.readAsync(getRawName(), codec, RedisCommands.ZREVRANK_ENTRY, getRawName(), encode(o), "WITHSCORE"); String name = getRawName(o);
return commandExecutor.readAsync(name, codec, RedisCommands.ZREVRANK_ENTRY, name, encode(o), "WITHSCORE");
} }
@Override @Override

Loading…
Cancel
Save