Optimistic Locking
Everything on SkillVeris tagged Optimistic Locking — collected across the glossary, study notes, blog, and cheat sheets.
4 resources across 2 libraries
Cheat Sheets(1)
Interview Questions(3)
Optimistic vs Pessimistic Locking: What is the Difference?
Pessimistic locking locks a row before reading it so no one else can change it, while optimistic locking allows concurrent reads and only checks for conflicts,…
How to Design an Airline Reservation System?
An airline reservation system is designed around a strongly consistent seat-inventory service that uses optimistic locking or short-lived holds to prevent doub…
How to Design a Bidding System?
A bidding system (such as a real-time ad auction or an online auction house) is designed around a strongly consistent bid-acceptance path that atomically valid…