コード例 #1
0
 public RedissonSetCache(
     Codec codec,
     EvictionScheduler evictionScheduler,
     CommandAsyncExecutor commandExecutor,
     String name) {
   super(codec, commandExecutor, name);
   evictionScheduler.schedule(getName());
 }
コード例 #2
0
 public RedissonMapCacheReactive(
     Codec codec,
     EvictionScheduler evictionScheduler,
     CommandReactiveExecutor commandExecutor,
     String name) {
   super(codec, commandExecutor, name);
   this.evictionScheduler = evictionScheduler;
   evictionScheduler.schedule(getName(), getTimeoutSetName());
 }