Let's learn about the MySQL storage engine

Let's learn about the MySQL storage engine

Preface

There are many file formats in daily life, and different file formats have corresponding storage methods and processing mechanisms (such as: .txt, .pdf, .mp4...)

There should be different processing mechanisms for storing different data.

Storage engines are different processing mechanisms

1. MySQL main storage engine:

. Innodb

. myisam

. memory

. blackhole

Let’s take a look at them one by one

'''
Innodb
It is the default storage engine for MySQL version 5.5 and later, which is more secure to store data.'''
'''
myisam
It is the default storage engine before MySQL 5.5. It is faster than Innodb, but we pay more attention to data security.
'''
memory
Memory engine (all data is stored in memory) power failure and data loss'''
'''
blackhole
Whatever is stored will disappear immediately (like a black hole)
'''

View the SQL statements for all storage engines:

show engines;

2. Examples of how different storage engines store tables

First, let's build a separate database

create database day45

Then switch to the database

use day45;

Create four tables with four different storage engines

create table t1(id int) engine=innodb;

create table t2(id int) engine=myisam;

create table t3(id int) engine=blackhole;

create table t4(id int) engine=memory;

After creating four tables, you will see four files with different storage engines under the data file.

The reason why the t3 table does not have the t3.MYD table data file is because the blackhole storage engine is like a black hole. If you throw a file into it, it will disappear, so it is not easy to store data in the file.

The t4 table is a memory storage engine. It is stored in memory and is a short-term storage of data. It is not easy to store it on the hard disk. Therefore, there is no table data file.

Next, we insert a piece of data into each table of different storage engines to see what the result will be:

insert into t1 values(1);

insert into t2 values(1);

insert into t3 values(1);

insert into t4 values(1);

You can see that when querying the data of each table separately, t3 does not store any data, because t3 is a blackhole storage engine, and the stored data will be lost immediately, so there will be no data when selecting. The experiment is not just for now. When you restart MySQL and re-query the data in each table, you will have new discoveries.

Obviously, the table of t4 also shows that there is no stored data at this time. Why is that?

Because t4 uses the memory storage engine, it stores data in memory instead of permanently. When you shut down MySQL and restart it, the data will be lost.

This is the end of this article about understanding MySQL storage engine. For more relevant MySQL storage engine content, please search for previous articles on 123WORDPRESS.COM or continue to browse the following related articles. I hope everyone will support 123WORDPRESS.COM in the future!

You may also be interested in:
  • MySQL table type storage engine selection
  • MySQL data analysis storage engine example explanation
  • Comparison of storage engines supported by MySQL database
  • Differences and comparisons of storage engines in MySQL
  • Advantages and disadvantages of common MySQL storage engines

<<:  Tutorial on how to modify element.style inline styles

>>:  Two ways to implement HTML page click download file

Recommend

MySQL storage engine basics

In the previous article, we talked about MySQL tr...

JavaScript function call, apply and bind method case study

Summarize 1. Similarities Both can change the int...

Building a KVM virtualization platform on CentOS7 (three ways)

KVM stands for Kernel-based Virtual Machine, whic...

Creating a Secondary Menu Using JavaScript

This article example shares the specific code of ...

MySQL character set garbled characters and solutions

Preface A character set is a set of symbols and e...

Basic tutorial on controlling Turtlebot3 mobile robot with ROS

Chinese Tutorial https://www.ncnynl.com/category/...

Complete steps of centos cloning linux virtual machine sharing

Preface When a Linux is fully set up, you can use...

Tutorial on installing mongodb under linux

MongoDB is cross-platform and can be installed on...

Linux uses bond to implement dual network cards to bind a single IP sample code

In order to provide high availability of the netw...

Vue2.0 implements adaptive resolution

This article shares the specific code of Vue2.0 t...

Tutorial on building file sharing service Samba under CentOS6.5

Samba Services: This content is for reference of ...

Do you know why vue data is a function?

Official website explanation: When a component is...

MySQL slow query log configuration and usage tutorial

Preface MySQL slow query log is a function that w...