MySQL performance optimization includes table optimization and column type selection. What can table optimization be broken down into? 1. Separate fixed-length and variable-length fields; 2. Separate commonly used fields from uncommon fields; 3. Add redundant fields to 1-to-many fields that require correlation statistics.
1. Table optimization and column type selection
Table optimization:
1. Fixed length Separate from the change of length
##al, such as ID int, account for 4 bytes, Char (4) accounts for 4 characters length, and it is also fixed. Time is the byte of each unit value. . Core and commonly used fields should be built to a fixed length and placed in one table. and Varchar, Text, Blob, long fields are suitable for placing a single table and associated with the main key with the core table.2. Commonly used fields and less commonly used fields should be separated
need to be analyzed in conjunction with the specific business of the website, and the query scenarios of the fields should be separated. Take it apart.3. Add redundant fields to the 1-to-many fields that require related statistics.
See the following effect:2. Column type selection
1. Field type priority
Integer type>date time>enum
char>varchar>blob,text Integer type: fixed length, no country/region distinction, no character set difference. For example:
tinyint 1,2,3,4,5 char(1) a,b,c,d,e
In terms of space, they all occupy 1 Bytes, but order by sorting, the former is faster. The reason may be that the character set and collation set (that is, the sorting rules) need to be considered;
The time is fixed length, the operation is fast, and the space is saved. Considering the time zone, it is inconvenient to write sql where > `2018-08-08`;
enum, which can serve the purpose of constraint, is stored internally using integers, but when jointly querying with cahr, the internal Go through the conversion of strings and values;
char fixed length, consider the character set and (sorting) proofreading set;
varchar variable length, need to consider the character set conversion and proofreading set when sorting, Slow speed;
text/blob cannot use memory temporary table (sorting and other operations can only be performed on disk)
Attachment: Regarding the selection of date/time, the master’s clear opinion, choose directly int unsgined not null, stores timestamp.
For example:
Gender: Take utf8 as an example
char(1), 3 bytes long
enum('Male',' Female'); Internally converted into numbers for storage, one more conversion process
tinyint(), fixed length 1 byte
2. Just use enough, don’t be generous (such as smallint varchar(N))
Reason: Large bytes waste memory and affect speed.
Taking age as an example tinyint unsigned not null can store 255 years old, which is enough. Using int wastes 3 bytes;
The content stored in varchar(10) and varchar(300) is the same, but varchar(300) takes more memory during table join query.
3. Try to avoid using NULL()Reason: NULL is not conducive to indexing and must be marked with special characters.
The space occupied on the disk is actually larger (MySQL5.5 has improved null, but the query is still inconvenient)
3. Index optimization strategy
1. Index type1.1 B-tree index
It’s called btree index. From a broad perspective, they all use balanced trees, but in terms of specific implementation, each engine is slightly different. For example, strictly speaking, the NDB engine uses T-tree.
But abstracting the B-tree system, it can be understood as a "sorted fast query structure".
1.2 Hash index
The default is hash index in the memory table, and the theoretical query time complexity of hash is O(1).
Question: Since hash search is so efficient, why not use hash index?
Answer:
1. The result calculated by the hash function is random. If the data is placed on the disk, taking the primary key as id as an example, then as the id grows, the id The corresponding rows are randomly placed on the disk.
2. Range query cannot be optimized.
3. The prefix index cannot be used. For example, in btree, the value of the field column is "helloworld", and the index query x=helloworld can naturally use the index, and x=hello can also use the index (left prefix index) .
4. Sorting cannot be optimized.
5. The row must be returned, which means that to get the data location through the index, the data must be returned to the table.
2. Common misunderstandings of btree indexes
2.1 Add indexes on columns commonly used in where conditions, for example:
where cat_id = 3 and price> ;100; Check the third column for products over 100 yuan.
Misunderstanding: Add indexes to both cat_id and price.
Error: Only cat_id or price index can be used, because they are independent indexes, and only one can be used at the same time.
2.2 After creating an index on multiple columns (joint index), the index will play a role in whichever column is queried
Misunderstanding: For the index to work on a multi-column index, the left prefix requirement needs to be met .
Take index(a,b,c) as an example, (note that it depends on the order)
4. Index experiment
For example: select * from t4 where c1=3 and c2 = 4 and c4>5 and c3=2;
Which indexes are used:
explain select * from t4 Where C1 = 3 and C2 = 4 and C4 & GT; 5 and C3 = 2 \ G
## As follows:## Note: (Key_Len: 4)
5. Clustered index and non-clustered index
Myisam and innodb engine, similarities and differences in index filesMyisam: consists of news.myd and new.myi The two files, the index file and the data file, are separate and are called non-clustered indexes. Both the primary index and the secondary index point to the physical row (the location of the disk)innodb: The index and data are gathered together, so it is a clustered index. The row of data is stored directly in the primary index file of innodb, and the secondary index points to a reference to the primary key index.Note: For innodb:
1. The primary key index stores the index value and stores the row data in the leaves. 2. If there is no primary key, unique key will be used as the primary key. 3. If there is no unique, the system generates an internal rowid as the primary key. 4. Like innodb, in the primary key index structure, both the primary key value and the row data are stored. This structure is called a clustered index.Clustered index
Advantages: When there are relatively few query entries based on the primary key, no rowback is needed (the data is under the primary key node)Disadvantages: If When irregular data is inserted, frequent page splits occurRelated articles:Mysql performance optimization
Related videos:MySQL Optimization Video Tutorial
The above is the detailed content of MySQL big data query performance optimization tutorial (picture). For more information, please follow other related articles on the PHP Chinese website!

如何优化MySQL连接速度?概述:MySQL是一种广泛使用的关系型数据库管理系统,常用于各种应用程序的数据存储和管理。在开发过程中,MySQL连接速度的优化对于提高应用程序的性能至关重要。本文将介绍一些优化MySQL连接速度的常用方法和技巧。目录:使用连接池调整连接参数优化网络设置使用索引和缓存避免长时间空闲连接配置合适的硬件资源总结正文:使用连接池

在当前互联网时代,数据的重要性不言而喻。作为互联网应用的核心组成部分之一,数据库的备份与恢复工作显得尤为重要。然而,随着数据量的不断增大和业务需求的日益复杂,传统的数据库备份与恢复方案已无法满足现代应用的高可用和高性能要求。因此,对MySQL数据库备份与恢复性能进行优化成为一个亟需解决的问题。在实践过程中,我们采取了一系列的项目经验,有效提升了MySQL数据

MySQL性能优化实战指南:深入理解B+树索引引言:MySQL作为开源的关系型数据库管理系统,被广泛应用于各个领域。然而,随着数据量的不断增加和查询需求的复杂化,MySQL的性能问题也越来越突出。其中,索引的设计和使用是影响MySQL性能的关键因素之一。本文将介绍B+树索引的原理,并以实际的代码示例展示如何优化MySQL的性能。一、B+树索引的原理B+树是一

随着互联网的飞速发展,MySQL数据库也成为了许多网站、应用程序甚至企业的核心数据存储技术。然而,随着数据量的不断增长和并发访问的急剧提高,MySQL的性能问题也愈发突显。而PHP的PDO类也因其高效稳定的性能被广泛运用于MySQL的开发和操作中。在本篇文章中,我们将介绍如何利用PDO类优化MySQL性能,提高数据库的响应速度和并发访问能力。一、PDO类介绍

在现代应用程序中,MySQL数据库是一个常见的选择。然而,随着数据量的增长和业务需求的不断变化,MySQL性能可能会受到影响。为保持MySQL数据库的高性能,动态SQL语句已经成为了提高MySQL性能的一种重要技术手段。什么是动态SQL语句动态SQL语句是指在应用程序中由程序生成SQL语句的技术,通俗地说就是把SQL语句当成字符串来处理。对于大型的应用程序,

MySQL性能优化:掌握TokuDB引擎的特点与优势引言:在大规模数据处理的应用中,MySQL数据库的性能优化是一个至关重要的任务。MySQL提供了多种引擎,每种引擎都有不同的特点和优势。本文将介绍TokuDB引擎的特点与优势,并提供一些代码示例,帮助读者更好地理解和应用TokuDB引擎。一、TokuDB引擎的特点TokuDB是一种高性能、高压缩率的存储引擎

随着互联网的高速发展,数据的规模不断扩大,对于数据库存储和查询效率的需求也越来越高。MySQL作为最常用的开源数据库,其性能优化一直是广大开发者关注的焦点。本文将介绍一种有效的MySQL性能优化技术——垂直分区表,并详细讲解如何实现和应用。一、什么是垂直分区表?垂直分区表是指将一张表根据列的特性进行分割,将不同的列存储在不同的物理存储设备上,从而提高查询效率

MySQL数据库作为一种轻量级关系型数据库管理系统,被广泛应用于互联网应用和企业级系统中。在企业级应用中,随着数据量的增加,数据表的大小也不断增加,因此,对数据表大小进行有效地管理,对于保证数据库的性能和可靠性至关重要。本文将介绍MySQL中的数据表大小管理技巧。一、数据表划分随着数据量的不断增加,数据表的大小也不断增加,会导致数据库性能下降,查询操作变得缓


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Dreamweaver Mac version
Visual web development tools

SAP NetWeaver Server Adapter for Eclipse
Integrate Eclipse with SAP NetWeaver application server.

Atom editor mac version download
The most popular open source editor

VSCode Windows 64-bit Download
A free and powerful IDE editor launched by Microsoft

SublimeText3 Chinese version
Chinese version, very easy to use
