- 6.5. 原子整长形(AtomicLong)
6.5. 原子整长形(AtomicLong)
Redisson的分布式整长形RAtomicLong
对象和Java中的java.util.concurrent.atomic.AtomicLong
对象类似。除了同步接口外,还提供了异步(Async)、反射式(Reactive)和RxJava2标准的接口。
RAtomicLong atomicLong = redisson.getAtomicLong("myAtomicLong");
atomicLong.set(3);
atomicLong.incrementAndGet();
atomicLong.get();