A brief discussion on the calculation method of key_len in mysql explain

A brief discussion on the calculation method of key_len in mysql explain

The MySQL explain command can analyze the performance of SQL, one of which is the key_len (index length) statistic. This article will analyze the calculation method of key_len in MySQL explain.

1. Create test tables and data

CREATE TABLE `member` (
 `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
 `name` varchar(20) DEFAULT NULL,
 `age` tinyint(3) unsigned DEFAULT NULL,
 PRIMARY KEY (`id`),
 KEY `name` (`name`)
)ENGINE=InnoDB DEFAULT CHARSET=utf8;

INSERT INTO `member` (`id`, `name`, `age`) VALUES (NULL, 'fdipzone', '18'), (NULL, 'jim', '19'), (NULL, 'tom', '19');

2. View explain

The name field type is varchar(20) , the character encoding is utf8 , and one character occupies 3 bytes, so key_len should be 20*3=60 .

mysql> explain select * from `member` where name='fdipzone';
+----+-------------+--------+------+---------------+------+---------+-------+------+-----------------------+
| id | select_type | table | type | possible_keys | key | key_len | ref | rows | Extra |
+----+-------------+--------+------+---------------+------+---------+-------+------+-----------------------+
| 1 | SIMPLE | member | ref | name | name | 63 | const | 1 | Using index condition |
+----+-------------+--------+------+---------------+------+---------+-------+------+-----------------------+

The key_len of explain is 63 , which is 3 more.

The name field allows NULL. Change name to NOT NULL and test again.

ALTER TABLE `member` CHANGE `name` `name` VARCHAR(20) NOT NULL;

mysql> explain select * from `member` where name='fdipzone';
+----+-------------+--------+------+---------------+------+---------+-------+------+-----------------------+
| id | select_type | table | type | possible_keys | key | key_len | ref | rows | Extra |
+----+-------------+--------+------+---------------+------+---------+-------+------+-----------------------+
| 1 | SIMPLE | member | ref | name | name | 62 | const | 1 | Using index condition |
+----+-------------+--------+------+---------------+------+---------+-------+------+-----------------------+

Now key_len is 62, which is 1 less than before, but still 2 more. It is certain that a NULL field will occupy one extra byte.

The name field type is varchar, which is a variable-length field. Change varchar to char and test again.

ALTER TABLE `member` CHANGE `name` `name` CHAR(20) NOT NULL;

mysql> explain select * from `member` where name='fdipzone';
+----+-------------+--------+------+---------------+------+---------+-------+------+-----------------------+
| id | select_type | table | type | possible_keys | key | key_len | ref | rows | Extra |
+----+-------------+--------+------+---------------+------+---------+-------+------+-----------------------+
| 1 | SIMPLE | member | ref | name | name | 60 | const | 1 | Using index condition |
+----+-------------+--------+------+---------------+------+---------+-------+------+-----------------------+

After changing to a fixed-length field, key_len is 60 , which is consistent with the prediction.

Summary: Using variable-length fields requires an additional 2 bytes, and using NULL requires an additional 1 byte. Therefore, for indexed fields, it is best to use fixed-length and NOT NULL definitions to improve performance.

The above brief discussion on the calculation method of key_len in MySQL explain is all the content that the editor shares with you. I hope it can give you a reference. I also hope that you will support 123WORDPRESS.COM.

You may also be interested in:
  • The meaning and calculation method of key_len in mysql explain

<<:  Example of how to configure multiple virtual hosts in nginx

>>:  Detailed explanation of js closure and garbage collection mechanism examples

Recommend

A brief discussion on the use of React.FC and React.Component

Table of contents 1. React.FC<> 2. class xx...

React + Threejs + Swiper complete code to achieve panoramic effect

Let’s take a look at the panoramic view effect: D...

Detailed description of component-based front-end development process

Background <br />Students who work on the fr...

Solution to VMware virtual machine no network

Table of contents 1. Problem Description 2. Probl...

nginx proxy_cache batch cache clearing script introduction

Preface: I used the official nginx proxy_cache as...

A brief analysis of the basic implementation of Vue detection data changes

Table of contents 1. Object change detection 2. Q...

The latest collection of 18 green style web design works

Toy Story 3 Online Marketing Website Zen Mobile I...

Example code for implementing verification code login in SMS API in Node

1. Node server setup + database connection The op...

How to set up vscode remote connection to server docker container

Table of contents Pull the image Run the image (g...

js to achieve simple calendar effect

This article shares the specific code of js to ac...

How to modify the group to which a user belongs in Linux

Modify the group to which a user belongs in Linux...

Refs and Ref Details in Vue3

The editor also shares with you the corresponding...

Detailed explanation of Nginx process scheduling problem

Nginx uses a fixed number of multi-process models...