org.redisson.Redisson.getKeys()方法的使用及代码示例

x33g5p2x  于2022-01-28 转载在 其他  
字(3.7k)|赞(0)|评价(0)|浏览(268)

本文整理了Java中org.redisson.Redisson.getKeys方法的一些代码示例,展示了Redisson.getKeys的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Redisson.getKeys方法的具体详情如下:
包路径:org.redisson.Redisson
类名称:Redisson
方法名:getKeys

Redisson.getKeys介绍

暂无

代码示例

代码示例来源:origin: redisson/redisson

@Override
public RFuture<Boolean> deleteAsync() {
  final RPromise<Boolean> result = new RedissonPromise<Boolean>();
  RFuture<Long> deleteFuture = redisson.getKeys().deleteAsync(
      requestQueueName, statusName, tasksCounterName, schedulerQueueName, tasksName, tasksRetryIntervalName);
  deleteFuture.addListener(new FutureListener<Long>() {
    @Override
    public void operationComplete(io.netty.util.concurrent.Future<Long> future) throws Exception {
      if (!future.isSuccess()) {
        result.tryFailure(future.cause());
        return;
      }
      
      result.trySuccess(future.getNow() > 0);
    }
  });
  return result;
}

代码示例来源:origin: redisson/redisson

@Override
public RFuture<Boolean> deleteAsync() {
  final RPromise<Boolean> result = new RedissonPromise<Boolean>();
  RFuture<Long> deleteFuture = redisson.getKeys().deleteAsync(
      requestQueueName, statusName, tasksCounterName, schedulerQueueName, tasksName, tasksRetryIntervalName);
  deleteFuture.addListener(new FutureListener<Long>() {
    @Override
    public void operationComplete(io.netty.util.concurrent.Future<Long> future) throws Exception {
      if (!future.isSuccess()) {
        result.tryFailure(future.cause());
        return;
      }
      
      result.trySuccess(future.getNow() > 0);
    }
  });
  return result;
}

代码示例来源:origin: redisson/redisson

@Override
public int countActiveWorkers() {
  String id = generateRequestId();
  int subscribers = (int) workersTopic.publish(id);
  if (subscribers == 0) {
    return 0;
  }
  RSemaphore semaphore = redisson.getSemaphore(workersSemaphoreName + ":" + id);
  try {
    semaphore.tryAcquire(subscribers, 10, TimeUnit.MINUTES);
  } catch (InterruptedException e) {
    Thread.currentThread().interrupt();
  }
  RAtomicLong atomicLong = redisson.getAtomicLong(workersCounterName + ":" + id);
  long result = atomicLong.get();
  redisson.getKeys().delete(semaphore, atomicLong);
  return (int) result;
}

代码示例来源:origin: redisson/redisson

@Override
public int countActiveWorkers() {
  String id = generateRequestId();
  int subscribers = (int) workersTopic.publish(id);
  if (subscribers == 0) {
    return 0;
  }
  RSemaphore semaphore = redisson.getSemaphore(workersSemaphoreName + ":" + id);
  try {
    semaphore.tryAcquire(subscribers, 10, TimeUnit.MINUTES);
  } catch (InterruptedException e) {
    Thread.currentThread().interrupt();
  }
  RAtomicLong atomicLong = redisson.getAtomicLong(workersCounterName + ":" + id);
  long result = atomicLong.get();
  redisson.getKeys().delete(semaphore, atomicLong);
  return (int) result;
}

代码示例来源:origin: org.redisson/redisson

@Override
public RFuture<Boolean> deleteAsync() {
  final RPromise<Boolean> result = new RedissonPromise<Boolean>();
  RFuture<Long> deleteFuture = redisson.getKeys().deleteAsync(
      requestQueueName, statusName, tasksCounterName, schedulerQueueName, tasksName, tasksRetryIntervalName);
  deleteFuture.addListener(new FutureListener<Long>() {
    @Override
    public void operationComplete(io.netty.util.concurrent.Future<Long> future) throws Exception {
      if (!future.isSuccess()) {
        result.tryFailure(future.cause());
        return;
      }
      
      result.trySuccess(future.getNow() > 0);
    }
  });
  return result;
}

代码示例来源:origin: org.redisson/redisson

@Override
public int countActiveWorkers() {
  String id = generateRequestId();
  int subscribers = (int) workersTopic.publish(id);
  if (subscribers == 0) {
    return 0;
  }
  RSemaphore semaphore = redisson.getSemaphore(workersSemaphoreName + ":" + id);
  try {
    semaphore.tryAcquire(subscribers, 10, TimeUnit.MINUTES);
  } catch (InterruptedException e) {
    Thread.currentThread().interrupt();
  }
  RAtomicLong atomicLong = redisson.getAtomicLong(workersCounterName + ":" + id);
  long result = atomicLong.get();
  redisson.getKeys().delete(semaphore, atomicLong);
  return (int) result;
}

相关文章