Notes: Distributed Locks
In a distributed system, sharing common resources becomes tricky. We need to ensure that the data we're reading is not stale and that updates happen sequentially during concurrent requests. To avoid such issues, one method to maintain consistency is ...
Jun 23, 20234 min read62


