search
HomeDatabaseMysql TutorialMySQL逻辑架构及存储引擎简介

MySQL5.5默认存储引引擎为InnoDB,最简单的答案是如果你不知道该选用何种存储引擎那么你就用InnoDB,因为它支持事务并且性能好。

MySQL逻辑架构:

 

 

并发控制:由锁实现

读锁:也叫共享锁,读锁互相不阻塞。A加锁表后A,b,c,d都能读该表但不能写该表。

写锁:也叫排他锁,写锁相互阻塞。A加排他锁后,其他线程不能读写该表。

 

锁粒度:

表锁:锁一个表,并发粒度小。代表存储引擎MyISAM

行锁:锁一行数据,并发粒度大,并发操作表性能好。代表存储引擎InnoDB。锁粒度小系统对锁的开销也大。

假如给一个表加读锁,那么其他线程也无法对该表进行写操作了,如果是加行锁那么该线程只阻塞只对这一行数据的读写,表中其他行的数据其他线程可以读写,提高并发性能。

 

事务:相当于把N条语句打包成一条语句,这个包中的N条语句全部执行成功则成功,如果有其中一条语句没有执行成功则事务回滚到原先状态事务执行失败不写入硬盘。

ACID(atomicityconsistency isolation durability)原子性,一致性,隔离性,持久性。是事务存储引擎的特性。

原子性:事务相当于一个N条语句的包,要么全部执行成功,要么则失败,对于事务来说不能成功执行一个事务的一部分,这就是原子性。

一致性:从一个一致的状态转换到另一个一致的状态。要么成功转换为成功的状态,要么失败回滚为原来的状态。

隔离性:A事务看不到B事务。

持久性:事务执行成功则写入硬盘,这就是叫持久性。

 

存储引擎:

·数据库存在目录中,库中的表存在该目录下。

·查看存储引擎:show table status like ‘table_name’ \G;

 

MyISAM存储引擎

·将表存在3个文件中.MYD存数据.MYI存索引.frm存表定义。

·支持表锁

·myisam表很大时更容易出现故障,需要手工进行修复表,,并且修复时间会非常漫长。修复表步骤:检查表,然后修复表。

·压缩表

 

InnoDB

·将表存在2个文件中ibdata1数据文件和数据库目录下的.frm表定义文件。

·支持事务

·支持行锁

·外键约束

·基于聚簇索引建立的,聚簇索引对主键查询性能非常高。

·InnoDB支持热备份,而其他所有存储引擎都不支持热备份。

 

选择合适的存储引擎:

·MySQL5.5默认存储引引擎为InnoDB,最简单的答案是如果你不知道该选用何种存储引擎那么你就用InnoDB,因为它支持事务并且性能好。有些人说MyISAM性能比InnoDB快,这可不一定,书中说很多时候InnoDB让MyISAM望尘莫及。

 

选择依据:

1、事务:InnoDB支持事务,MyISAM不是事务型存储引擎。

2、InnoDB支持在线热备份。

3、崩溃恢复,InnoDB是事务型存储引擎支持,MyISAM崩溃后修复一个大的表是非常慢的。

4、特有特性,比如聚簇索引,外键约束,行锁等等。

 

如果对数据安全性要求不高,并且主要读取的并且数据库表不是很大的场景下应用MyISAM。

数据量非常大那么还是用InnoDB吧,当读写非常频繁时候行级锁性能更好。

linux

Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
How to solve the problem of mysql cannot open shared libraryHow to solve the problem of mysql cannot open shared libraryMar 04, 2025 pm 04:01 PM

This article addresses MySQL's "unable to open shared library" error. The issue stems from MySQL's inability to locate necessary shared libraries (.so/.dll files). Solutions involve verifying library installation via the system's package m

Reduce the use of MySQL memory in DockerReduce the use of MySQL memory in DockerMar 04, 2025 pm 03:52 PM

This article explores optimizing MySQL memory usage in Docker. It discusses monitoring techniques (Docker stats, Performance Schema, external tools) and configuration strategies. These include Docker memory limits, swapping, and cgroups, alongside

How do you alter a table in MySQL using the ALTER TABLE statement?How do you alter a table in MySQL using the ALTER TABLE statement?Mar 19, 2025 pm 03:51 PM

The article discusses using MySQL's ALTER TABLE statement to modify tables, including adding/dropping columns, renaming tables/columns, and changing column data types.

Run MySQl in Linux (with/without podman container with phpmyadmin)Run MySQl in Linux (with/without podman container with phpmyadmin)Mar 04, 2025 pm 03:54 PM

This article compares installing MySQL on Linux directly versus using Podman containers, with/without phpMyAdmin. It details installation steps for each method, emphasizing Podman's advantages in isolation, portability, and reproducibility, but also

What is SQLite? Comprehensive overviewWhat is SQLite? Comprehensive overviewMar 04, 2025 pm 03:55 PM

This article provides a comprehensive overview of SQLite, a self-contained, serverless relational database. It details SQLite's advantages (simplicity, portability, ease of use) and disadvantages (concurrency limitations, scalability challenges). C

How do I configure SSL/TLS encryption for MySQL connections?How do I configure SSL/TLS encryption for MySQL connections?Mar 18, 2025 pm 12:01 PM

Article discusses configuring SSL/TLS encryption for MySQL, including certificate generation and verification. Main issue is using self-signed certificates' security implications.[Character count: 159]

Running multiple MySQL versions on MacOS: A step-by-step guideRunning multiple MySQL versions on MacOS: A step-by-step guideMar 04, 2025 pm 03:49 PM

This guide demonstrates installing and managing multiple MySQL versions on macOS using Homebrew. It emphasizes using Homebrew to isolate installations, preventing conflicts. The article details installation, starting/stopping services, and best pra

What are some popular MySQL GUI tools (e.g., MySQL Workbench, phpMyAdmin)?What are some popular MySQL GUI tools (e.g., MySQL Workbench, phpMyAdmin)?Mar 21, 2025 pm 06:28 PM

Article discusses popular MySQL GUI tools like MySQL Workbench and phpMyAdmin, comparing their features and suitability for beginners and advanced users.[159 characters]

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
Repo: How To Revive Teammates
1 months agoBy尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
4 weeks agoBy尊渡假赌尊渡假赌尊渡假赌

Hot Tools

mPDF

mPDF

mPDF is a PHP library that can generate PDF files from UTF-8 encoded HTML. The original author, Ian Back, wrote mPDF to output PDF files "on the fly" from his website and handle different languages. It is slower than original scripts like HTML2FPDF and produces larger files when using Unicode fonts, but supports CSS styles etc. and has a lot of enhancements. Supports almost all languages, including RTL (Arabic and Hebrew) and CJK (Chinese, Japanese and Korean). Supports nested block-level elements (such as P, DIV),

MinGW - Minimalist GNU for Windows

MinGW - Minimalist GNU for Windows

This project is in the process of being migrated to osdn.net/projects/mingw, you can continue to follow us there. MinGW: A native Windows port of the GNU Compiler Collection (GCC), freely distributable import libraries and header files for building native Windows applications; includes extensions to the MSVC runtime to support C99 functionality. All MinGW software can run on 64-bit Windows platforms.

SublimeText3 English version

SublimeText3 English version

Recommended: Win version, supports code prompts!

SecLists

SecLists

SecLists is the ultimate security tester's companion. It is a collection of various types of lists that are frequently used during security assessments, all in one place. SecLists helps make security testing more efficient and productive by conveniently providing all the lists a security tester might need. List types include usernames, passwords, URLs, fuzzing payloads, sensitive data patterns, web shells, and more. The tester can simply pull this repository onto a new test machine and he will have access to every type of list he needs.

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use