Transactions in MySQL are automatically committed by default, that is, autocommit = 1; But this can cause problems in some situations: for example: If you want to insert 1000 records at one time, MySQL will commit 1000 times. If we turn off autocommit [autocommit = 0] and control it through the program, only one commit is needed, which can better reflect the characteristics of the transaction! For operations that require numerical values, such as amount, number, etc.! Remember one principle: lock first, judge second, and update third In MySQL InnoDB, the default Tansaction isolation level is REPEATABLE READ (rereadable) There are two main types of read locks in SELECT:
When selecting from the same data table during a transaction, both methods must wait until other transaction data is committed before execution. The main difference is that LOCK IN SHARE MODE can easily cause deadlock when one transaction wants to update the same form. Simply put, if you want to UPDATE the same table after SELECT, it is best to use SELECT ... UPDATE. For example: Assume that there is a quantity in the product form products to store the quantity of the product. Before an order is placed, it is necessary to first determine whether the quantity of the product is sufficient (quantity>0), and then update the quantity to 1. The code is as follows: SELECT quantity FROM products WHERE id=3; UPDATE products SET quantity = 1 WHERE id=3; Why is it unsafe? There may not be any problem in a small amount of cases, but there will definitely be problems with large amounts of data access. If we need to deduct inventory only when quantity>0, suppose the program reads the quantity of 2 in the first SELECT line. It seems that the number is correct, but when MySQL is about to UPDATE, someone may have already deducted the inventory to 0, but the program is unaware of it and continues the UPDATE without any error. Therefore, a transaction mechanism must be used to ensure that the data read and submitted are correct. So we can test it in MySQL like this, the code is as follows: SET AUTOCOMMIT=0; BEGIN WORK; SELECT quantity FROM products WHERE id=3 FOR UPDATE; At this time, UPDATE products SET quantity = '1' WHERE id=3 ; COMMIT WORK; Commit writes to the database and unlocks products.
MySQL SELECT ... FOR UPDATE Row Lock and Table Lock The usage of For example: Suppose there is a form products with two fields id and name, and id is the primary key. Example 1: (Specify the primary key explicitly, and have this data, row lock) SELECT * FROM products WHERE id='3' FOR UPDATE; Example 2: (no primary key, table lock) SELECT * FROM products WHERE name='Mouse' FOR UPDATE; Example 3: (Primary key is unclear, table lock) SELECT * FROM products WHERE id<>'3' FOR UPDATE; Example 4: (Unclear primary key, table lock) SELECT * FROM products WHERE id LIKE '3' FOR UPDATE; Optimistic and pessimistic locking strategies Pessimistic lock: locks the rows when reading data, and other updates to these rows must wait until the pessimistic lock ends before continuing. Optimistic lock: No lock when reading data, check whether the data has been updated when updating, if so, cancel the current update. Generally, we will choose optimistic lock when the waiting time of pessimistic lock is too long and unacceptable. 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:
|
<<: Understanding the Lazy Loading Attribute Pattern in JavaScript
>>: Linux remote control windows system program (three methods)
To create a flex container, simply add a display:...
Preface Regarding the use of MySQL indexes, we ha...
I recently encountered a strange thing when debug...
It is a very common requirement to set the horizo...
[Usage and function of mysql cursor] example: The...
Preface Relational databases are more likely to b...
Introduction to Git Git is an open source version...
This article uses examples to illustrate how to i...
Preface The requirement implemented in this artic...
1.MySQL replication concept It means transferring...
Recently, the company has put forward a requireme...
1. MySQL master-slave asynchrony 1.1 Network Dela...
1. Modify my.cnf #The overall effect is that both...
Table of contents 1. substring() 2. substr() 3.in...
Suddenly, I needed to build a private service for...