6.5. 原子整长形(AtomicLong)

Redisson的分布式整长形RAtomicLong对象和Java中的java.util.concurrent.atomic.AtomicLong对象类似。除了同步接口外,还提供了异步(Async)、反射式(Reactive)和RxJava2标准的接口。

  1. RAtomicLong atomicLong = redisson.getAtomicLong("myAtomicLong");
  2. atomicLong.set(3);
  3. atomicLong.incrementAndGet();
  4. atomicLong.get();