当前位置:网站首页>MySQL storage engine
MySQL storage engine
2022-07-06 00:22:00 【Constantly improving Nan】
MySQL Storage engine
1. What is a database storage engine ?
Database engine : It's for storage 、 Core services that process and protect data . With the database engine, you can control access and process transactions quickly , This meets the requirements of most applications within the enterprise that need to process large amounts of data .
2. The default storage engine is InnoDB
1. utilize show create table Table name sql Statement to see what the default storage engine is
3. Look at the storage engine for the database
sql sentence :show engines;
4. Create tables and develop storage engines for tables
1. Create a data table and set the table storage engine as MyISAM;
2. Create a data table and set the table storage engine as Memory;
5.InnoDB Storage engine
1.InnoDB What is it? ?
InnoDB It's a kind of balance High reliability and High performance universal storage engine .
2.InnoDB What are the characteristics of ?
1.DML( Data operation language : Additions and deletions ) Operation follows ACID( Four characteristics of transaction : Atomicity 、 Uniformity 、 Isolation, 、 persistence ) Model , Support transactions ;
2. Row-level locks , Improve concurrent access performance ;
3. Support foreign keys foreign key constraint , Ensure the integrity and correctness of data .
4. Support crash repair and auto increment .
3.InnoDB Analysis of advantages and disadvantages :
InnoDB The advantage of is to support transactions 、 Support foreign keys 、 Support crash repair and auto increment . adopt InnoDB To control transaction commit and rollback , So as to ensure the integrity of the business .
InnoDB The disadvantage of is the low efficiency of reading and writing , It takes up a lot of data space .
6. Database table level lock and row level lock
1.MySQL Lock mechanism of database : Different storage engines support different locking mechanisms .
MyISAM and MEMORY The storage engine uses table level locks .
InnoDB The storage engine supports row level locking , Table level locks are also supported , Row level lock is adopted by default .
2.MySQL Two main lock features :
Table lock : Lock the whole table every time , Low overhead , Locked fast , A deadlock will not occur , The probability of lock conflict is high , Low concurrency ;
Row-level locks : Lock a row of data each time , Spending big , Lock the slow , A deadlock occurs , The probability of lock conflict is low , High concurrency .
7.MyISAM
1.MyISAM Is early MySQL Early default storage engine .
characteristic :1. Unsupported transaction , Foreign key not supported ;
2. Support table lock , Row locks are not supported ;
3. Fast access
characteristic :
xxx.sdi: Store table structure information ;
xxx.MYD: Store the data ;
xxx.MYI: Storage index .
2.MyISAM Analysis of advantages and disadvantages :
MyISAM The engine saves a separate index file .myi, And its index is directly located to OFFSET Of , and InnoDB There is no separate physical index to store files ,InnoDB Index addressing is to locate the block data first , Then navigate to the row data , therefore ,MyISAM The query efficiency is better than InnoDB The query efficiency is high , But it doesn't support transactions , Foreign key not supported , The applicable scenario is to read more and write less , Business scenarios that do not require high integrity .
8.Memory
1.Memory The definition of
Memory: Memory database engine , All data is stored in memory , Reading and writing are very efficient , however MySQL After the service is restarted , Data will be lost , It does not support transactions 、 Foreign keys ,memory Support hash Index or B Tree index ,hash It's based on the index key Of the query , High query efficiency , The efficiency of range based query is relatively low .InnoDB and MyISAM Is based on B+ The data structure of the tree is realized .
2.Memory Analysis of advantages and disadvantages
Memory High reading and writing ability , however MySQL After reboot , Data will be lost , Foreign keys and transactions are not supported .
Applicable scenario : High reading and writing efficiency , Business scenarios that are not sensitive to data loss .
边栏推荐
- STM32 configuration after chip replacement and possible errors
- Multithreading and high concurrency (8) -- summarize AQS shared lock from countdownlatch (punch in for the third anniversary)
- AtCoder Beginner Contest 254【VP记录】
- [online chat] the original wechat applet can also reply to Facebook homepage messages!
- Configuring OSPF GR features for Huawei devices
- Hardware and interface learning summary
- Browser local storage
- 权限问题:source .bash_profile permission denied
- Go learning - dependency injection
- Power Query数据格式的转换、拆分合并提取、删除重复项、删除错误、转置与反转、透视和逆透视
猜你喜欢

Start from the bottom structure and learn the introduction of fpga---fifo IP core and its key parameters

Hudi of data Lake (2): Hudi compilation
![Choose to pay tribute to the spirit behind continuous struggle -- Dialogue will values [Issue 4]](/img/d8/a367c26b51d9dbaf53bf4fe2a13917.png)
Choose to pay tribute to the spirit behind continuous struggle -- Dialogue will values [Issue 4]

notepad++正则表达式替换字符串

FFT 学习笔记(自认为详细)

Key structure of ffmpeg -- AVCodecContext
![Atcoder beginer contest 254 [VP record]](/img/13/656468eb76bb8b6ea3b6465a56031d.png)
Atcoder beginer contest 254 [VP record]

Permission problem: source bash_ profile permission denied

Date类中日期转成指定字符串出现的问题及解决方法

MySQL之函数
随机推荐
2022.7.5-----leetcode. seven hundred and twenty-nine
Power Query数据格式的转换、拆分合并提取、删除重复项、删除错误、转置与反转、透视和逆透视
[designmode] Decorator Pattern
QT -- thread
FFT learning notes (I think it is detailed)
Teach you to run uni app with simulator on hbuilderx, conscience teaching!!!
anconda下载+添加清华+tensorflow 安装+No module named ‘tensorflow‘+KernelRestarter: restart failed,内核重启失败
从底层结构开始学习FPGA----FIFO IP核及其关键参数介绍
N1 # if you work on a metauniverse product [metauniverse · interdisciplinary] Season 2 S2
The difference of time zone and the time library of go language
STM32 configuration after chip replacement and possible errors
免费的聊天机器人API
LeetCode 1598. Folder operation log collector
Pointer pointer array, array pointer
Hardware and interface learning summary
多线程与高并发(8)—— 从CountDownLatch总结AQS共享锁(三周年打卡)
State mode design procedure: Heroes in the game can rest, defend, attack normally and attack skills according to different physical strength values.
PHP determines whether an array contains the value of another array
Analysis of the combination of small program technology advantages and industrial Internet
Go learning --- structure to map[string]interface{}



