当前位置:网站首页>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 .
边栏推荐
- Knowledge about the memory size occupied by the structure
- FFT learning notes (I think it is detailed)
- 关于slmgr命令的那些事
- Huawei equipment configuration ospf-bgp linkage
- LeetCode 6005. The minimum operand to make an array an alternating array
- FFT 学习笔记(自认为详细)
- OS i/o devices and device controllers
- [binary search tree] add, delete, modify and query function code implementation
- Notepad++ regular expression replacement string
- Global and Chinese market of valve institutions 2022-2028: Research Report on technology, participants, trends, market size and share
猜你喜欢
建立时间和保持时间的模型分析
Multithreading and high concurrency (8) -- summarize AQS shared lock from countdownlatch (punch in for the third anniversary)
Hudi of data Lake (2): Hudi compilation
电机的简介
权限问题:source .bash_profile permission denied
[EI conference sharing] the Third International Conference on intelligent manufacturing and automation frontier in 2022 (cfima 2022)
【DesignMode】装饰者模式(Decorator pattern)
Problems encountered in the database
FPGA内部硬件结构与代码的关系
uniapp开发,打包成H5部署到服务器
随机推荐
[designmode] Decorator Pattern
Classical concurrency problem: the dining problem of philosophers
[designmode] adapter pattern
Ffmpeg learning - core module
The global and Chinese markets of dial indicator calipers 2022-2028: Research Report on technology, participants, trends, market size and share
Intranet Security Learning (V) -- domain horizontal: SPN & RDP & Cobalt strike
Yolov5, pychar, Anaconda environment installation
7.5 decorator
LeetCode 1189. Maximum number of "balloons"
Problems encountered in the database
Pointer - character pointer
Calculate sha256 value of data or file based on crypto++
How much do you know about the bank deposit business that software test engineers must know?
Power Query数据格式的转换、拆分合并提取、删除重复项、删除错误、转置与反转、透视和逆透视
What are the functions of Yunna fixed assets management system?
建立时间和保持时间的模型分析
Transport layer protocol ----- UDP protocol
认识提取与显示梅尔谱图的小实验(观察不同y_axis和x_axis的区别)
Reading notes of the beauty of programming
What is information security? What is included? What is the difference with network security?