Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

How to use mysql Gap Lock

2025-02-24 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Internet Technology >

Share

Shulou(Shulou.com)05/31 Report--

In this article, the editor introduces "how to use mysql gap lock" in detail, the content is detailed, the steps are clear, and the details are handled properly. I hope this article "how to use mysql gap lock" can help you solve your doubts.

Interval lock, locking only one index interval (open interval, excluding double-ended endpoints)

1. Lock the gap between the index records, or before or after the index records, excluding the index records themselves.

2. Gap locks can be used to prevent phantom reads to ensure that data is not inserted between indexes.

Example

Session 1:start transaction; select * from news where number=4 for update; session 2:start transaction; insert into news value (2); # (blocking) insert into news value (2); # (blocking) insert into news value (4); # (blocking) insert into news value (4); # (blocking) insert into news value (7); # (execution successful) insert into news value (9); # (execution successful) insert into news value (11) # (successful execution) so far, the article "how to use mysql Gap Lock" has been introduced. If you want to master the knowledge of this article, you still need to practice and use it. If you want to know more about related articles, please follow the industry information channel.

Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.

Views: 0

*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.

Share To

Internet Technology

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report