|
|
|
@ -25,6 +25,7 @@ import org.redisson.core.RBucketAsync;
|
|
|
|
|
import org.redisson.core.RDequeAsync;
|
|
|
|
|
import org.redisson.core.RHyperLogLogAsync;
|
|
|
|
|
import org.redisson.core.RKeysAsync;
|
|
|
|
|
import org.redisson.core.RLexSortedSet;
|
|
|
|
|
import org.redisson.core.RListAsync;
|
|
|
|
|
import org.redisson.core.RMapAsync;
|
|
|
|
|
import org.redisson.core.RQueueAsync;
|
|
|
|
@ -98,6 +99,12 @@ public class RedissonBatch implements RBatch {
|
|
|
|
|
return new RedissonScoredSortedSet<V>(executorService, name);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@Override
|
|
|
|
|
public RLexSortedSet getLexSortedSet(String name) {
|
|
|
|
|
return new RedissonLexSortedSet(executorService, name);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@Override
|
|
|
|
|
public RScriptAsync getScript() {
|
|
|
|
|
return new RedissonScript(executorService);
|
|
|
|
|