Linux MySQL Storage Engine detailed

Source: Internet
Author: User

MySQL commonly used storage engine is myisam, InnoDB, memory, MERGE , Where InnoDB provides a transaction security table, the other storage engines are non-transactional security tables. &NBSP

myisam is the default storage engine for MySQL. myisam does not support transactions, and foreign keys are not supported, but their access is fast and there is no requirement for transactional integrity. &NBSP

innodb storage Engine provides transactional security with commit, rollback, and crash resiliency. But compared to myisam storage engine, innodb Write processing is less efficient and consumes more disk space to preserve data and indexes. &NBSP

memory storage engine uses content that exists in memory to create a table. Each memory table only actually corresponds to one disk file. memory type of table access is very fast because its data is in memory and the hash index is used by default. But once the service is closed, the data in the table is lost. &NBSP

merge storage Engine is a set of myisam table combination , these MyISAM tables must be structurally identical. merge the table itself has no data, for merge type of table for query, update, delete operations Is the myisam of the internal table.  

Linux MySQL Storage Engine detailed

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.