Solution to realize distributed lock
1. Distributed lock
1.1 what is distributed lock
When we develop a stand-alone application involving concurrent synchronization, we often use synchronized or ReentrantLock to solve the problem of code synchronization between multiple threads. However, when our application works in a distributed cluster, we need a more advanced locking m ...
Added by shmeeg on Tue, 04 Jan 2022 18:45:44 +0200