MySQL transaction isolation level details

MySQL transaction isolation level details

serializable serialization (no problem)

Transactions must be executed in a sequential manner. The subsequent transactions cannot be committed before the previous transaction is committed. This is the safest method, but concurrent operations are not possible, resulting in low efficiency.

repeatab read repeatable read (default isolation level) (phantom read)

Before a transaction is committed, no matter how many queries are executed, the query results are the same (even if the record has been modified by other transactions), but phantom reads may occur.

read committed committed (non-repeatable, phantom read)

In the current transaction, data submitted by other transactions can be seen, which may lead to non-repeatable read (after another thread submits data, the current thread can see it, and then the results of the same SQL query twice before and after will be different (compared to repeatable read)).

Phantom reading may also occur
User1 queries wangwu and finds that it does not exist. Then user2 starts a transaction and inserts wangwu but does not commit the data. User1 queries again and still finds that it does not exist. The operation of inserting wangwu is executed, but the operation fails. Obviously, wangwu does not exist but cannot be inserted, resulting in phantom read.

read uncommitted uncommitted (phantom read, non-repeatable read, dirty read)

  • Dirty read: The current transaction will read data that is not committed by other transactions. If other transactions are rolled back, the data read by the current transaction is illegal, which is called dirty read.
  • Non-repeatable read occurs: modifications submitted by other transactions will be perceived by the current transaction, so the query results are different.
  • Phantom read occurs: First, user 1 queries wangwu and it does not exist. User 2 starts a transaction and inserts wangwu but does not commit the transaction. At this time, user1 queries wangwu and finds that it exists.

The deletewangwu operation failed. wangwu was found but could not be deleted?

This is the end of this article about the details of MySQL transaction isolation levels. For more information about MySQL transaction isolation levels, please search for previous articles on 123WORDPRESS.COM or continue to browse the following related articles. I hope you will support 123WORDPRESS.COM in the future!

You may also be interested in:
  • In-depth understanding of Mysql transaction isolation level and locking mechanism issues
  • MySQL Series 10 MySQL Transaction Isolation to Implement Concurrency Control
  • Mysql transaction isolation level principle example analysis
  • Detailed explanation of Mysql transaction isolation level read commit
  • In-depth understanding of the four isolation levels of MySQL transactions

<<:  How to turn off eslint detection in vue (multiple methods)

>>:  Detailed explanation of html download function

Recommend

Javascript design pattern prototype mode details

Table of contents 1. Prototype mode Example 1 Exa...

Detailed explanation of MySQL high availability architecture

Table of contents introduction MySQL High Availab...

A brief discussion on Vue3 father-son value transfer

Table of contents From father to son: 1. In the s...

Two methods to disable form controls in HTML: readonly and disabled

In the process of making web pages, we often use f...

Use simple jQuery + CSS to create a custom a tag title tooltip

Introduction Use simple jQuery+CSS to create a cus...

CentOS uses local yum source to build LAMP environment graphic tutorial

This article describes how to use the local yum s...

The easiest way to install MySQL 5.7.20 using yum in CentOS 7

The default database of CentOS7 is mariadb, but m...

CentOS server security configuration strategy

Recently, the server has been frequently cracked ...

Docker installation rocketMQ tutorial (most detailed)

RocketMQ is a distributed, queue-based messaging ...

The concept and characteristics of MySQL custom variables

A MySQL custom value is a temporary container for...

Summary of MySQL data migration

Table of contents Preface: 1. About data migratio...

Implementation of multiple instances of tomcat on a single machine

1. Introduction First of all, we need to answer a...

Implementation of code optimization for Vue2.x project performance optimization

Table of contents 1 Use of v-if and v-show 2. Dif...