MySQL's conceptual understanding of various locks

MySQL's conceptual understanding of various locks

Optimistic Locking

Optimistic locking is mostly implemented based on a data version recording mechanism, generally by adding a "version" field to the database table. When reading data, the version number is read out together, and when updating later, the version number is increased by one. At this time, the version data of the submitted data is compared with the current version information of the corresponding record in the database table. If the submitted data version number is greater than the current version number of the database table, it will be updated, otherwise it is considered to be expired data.

For example, placing an order:

Query product information.

select (quantity, version)
from t_goods
where id = #{id}

Generate orders based on product information.

Decrease the item quantity by 1.

update t_goods
set quantity = quantity - 1
where id = #{id} and version = #{version}

Pessimistic Lock

Pessimistic locking is implemented by the locking mechanism provided by the database. Both shared locks and exclusive locks in MySQL are pessimistic locks. By default, database addition, deletion, and modification operations will add exclusive locks, while queries will not add any locks.

Shared lock (read lock)

A shared lock means that multiple different transactions share the same lock for a resource. By adding a shared lock to a resource, you can read the resource yourself and others can also read the resource (you can also add another shared lock, that is, the shared lock shares multiple memories), but it cannot be modified. If you want to modify it, you must wait until all shared locks are released. Syntax: select * from table lock in share mode; .

for example:

Window 1: Add a shared lock to a piece of data in an unfinished transaction.

BEGIN;
SELECT * FROM t_red_packet WHERE id = 1 LOCK IN SHARE MODE;

Window 2 adds a shared lock to the same data and the lock is successful.

SELECT * FROM t_red_packet WHERE id = 1 LOCK IN SHARE MODE;

When updating [Err] 1205 - Lock wait timeout exceeded; try restarting transaction restarting transaction is displayed. You need to wait until all shared locks are released before you can perform the update operation.

UPDATE t_red_packet
SET user_id = 2

Exclusive lock (write lock)

An exclusive lock means that for multiple different transactions, there can only be one lock on the same resource. By adding an exclusive lock to a resource, you can perform add, delete, modify, and query operations on it, but others cannot lock it, let alone perform add, delete, and modify operations. Syntax: select * from table for update .

Window 1: An exclusive lock is added to a piece of data in an unfinished transaction.

BEGIN;
SELECT * FROM t_red_packet WHERE id = 1 FOR UPDATE;

Window 1, update the row data successfully.

UPDATE t_red_packet
SET user_id = 2

In window 2, query the row of data and you can find it.

SELECT * FROM t_red_packet WHERE id = 1

Window 2 locks the data and prompts [Err] 1205 - Lock wait timeout exceeded; try restarting transaction .

SELECT * FROM t_red_packet WHERE id = 1 FOR UPDATE;

To summarize, a shared lock means that everyone reads together and shares the lock, but no one can modify the locked data. An exclusive lock means that I just want to modify it, you can read it, but you cannot lock it or modify the data.

Row Lock

Row lock is to lock a row of data.

Table Lock

A table lock is to lock a table.

Summarize

The above is the full content of this article. I hope that the content of this article will have certain reference learning value for your study or work. Thank you for your support of 123WORDPRESS.COM. If you want to learn more about this, please check out the following links

You may also be interested in:
  • Mysql queries the transactions being executed and how to wait for locks
  • Understanding MySQL Locking Based on Update SQL Statements
  • PHP uses Mysql lock to solve high concurrency
  • Solution to PHP+MySQL high-concurrency locked transaction processing problem
  • Analysis of MySQL lock mechanism and usage
  • How to check where the metadata lock is blocked in MySQL
  • Analysis of the implementation of MySQL statement locking
  • Mysql uses the kill command to solve the deadlock problem (kill a certain SQL statement being executed)
  • MYSQL unlock and lock table introduction
  • A complete record of a Mysql deadlock troubleshooting process

<<:  How to build your own Nexus private server in Linux

>>:  Specific use of the wx.getUserProfile interface in the applet

Recommend

How to connect to a remote docker server with a certificate

Table of contents 1. Use scripts to encrypt TLS f...

Solution to failure in connecting to mysql in docker

Scenario: After installing the latest version of ...

Detailed process record of Vue2 initiating requests using Axios

Table of contents Preface Axios installation and ...

Solve the problem of VScode configuration remote debugging Linux program

Let's take a look at the problem of VScode re...

Simplify complex website navigation

<br />Navigation design is one of the main t...

Springboot+Vue-Cropper realizes the effect of avatar cutting and uploading

Use the Vue-Cropper component to upload avatars. ...

Example analysis of the principle and solution of MySQL sliding order problem

This article uses examples to explain the princip...

Detailed explanation of MySQL replication principles and practical applications

This article uses examples to illustrate the prin...

Introduction to common MySQL storage engines and parameter setting and tuning

MyISAM, a commonly used storage engine in MySQL c...

CSS code to achieve 10 modern layouts

Preface I watched web.dev's 2020 three-day li...

MySQL uses inet_aton and inet_ntoa to process IP address data

This article will introduce how to save IP addres...