Locking In On Concurrency Control
Concurrency in a multi-user collaborative environment can be challenging. However, understanding the use case is crucial in picking a solution for handling concurrency. Let’s dive into different solutions for concurrency control in various situations. YouTube Check out my YouTube channel, where I post all kinds of content accompanying my posts, including this video showing everything in this post. Last Write Wins The first strategy is that there is no strategy. That might sound odd, but not all situations require concurrency controls. “Last write wins” means whatever the client writes to the database will succeed. If you’re using a relational database, this means… Read More »Locking In On Concurrency Control