2

Redisson has several lock implementations ( RLock, RedissonMultiLock, RedissonRedLock), but what guarantees are provided in terms of safety and liveness for each of the lock types is not clear.

Referring to this - https://redis.io/topics/distlock I believe the RedLock implementation must be the most robust implementation, but nothing is mentioned regarding the lack of fault-tolerance wrt the other implementations.

user1571307
  • 335
  • 1
  • 2
  • 12

1 Answers1

1

Redisson lock objects have the same fault-tolerance property as Redis setup itself.

Nikita Koksharov
  • 10,283
  • 1
  • 62
  • 71