当前位置:网站首页>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 .
边栏推荐
- 什么叫做信息安全?包含哪些内容?与网络安全有什么区别?
- 如何利用Flutter框架开发运行小程序
- LeetCode 6004. Get operands of 0
- Data analysis thinking analysis methods and business knowledge -- analysis methods (II)
- Teach you to run uni app with simulator on hbuilderx, conscience teaching!!!
- Global and Chinese market of digital serial inverter 2022-2028: Research Report on technology, participants, trends, market size and share
- Classical concurrency problem: the dining problem of philosophers
- Multithreading and high concurrency (8) -- summarize AQS shared lock from countdownlatch (punch in for the third anniversary)
- wx. Getlocation (object object) application method, latest version
- [binary search tree] add, delete, modify and query function code implementation
猜你喜欢
FFT learning notes (I think it is detailed)
如何利用Flutter框架开发运行小程序
FPGA内部硬件结构与代码的关系
Hudi of data Lake (2): Hudi compilation
Classical concurrency problem: the dining problem of philosophers
Yunna | what are the main operating processes of the fixed assets management system
State mode design procedure: Heroes in the game can rest, defend, attack normally and attack skills according to different physical strength values.
电机的简介
Notepad++ regular expression replacement string
Choose to pay tribute to the spirit behind continuous struggle -- Dialogue will values [Issue 4]
随机推荐
【线上小工具】开发过程中会用到的线上小工具合集
LeetCode 6004. Get operands of 0
Key structure of ffmpeg - avframe
[Online gadgets] a collection of online gadgets that will be used in the development process
FPGA内部硬件结构与代码的关系
[QT] QT uses qjson to generate JSON files and save them
Date类中日期转成指定字符串出现的问题及解决方法
Chapter 16 oauth2authorizationrequestredirectwebfilter source code analysis
QT -- thread
什么叫做信息安全?包含哪些内容?与网络安全有什么区别?
Gd32f4xx UIP protocol stack migration record
[designmode] adapter pattern
LeetCode 1189. Maximum number of "balloons"
LeetCode 斐波那契序列
[Chongqing Guangdong education] reference materials for Zhengzhou Vocational College of finance, taxation and finance to play around the E-era
Choose to pay tribute to the spirit behind continuous struggle -- Dialogue will values [Issue 4]
MySQL之函数
7.5 simulation summary
[Chongqing Guangdong education] Chongqing Engineering Vocational and Technical College
Notepad + + regular expression replace String