Disadvantages of MySQL indexes and what are the actual operations of MySQL indexes? _ MySQL

Source: Internet
Author: User
Tags mysql index
Disadvantages of MySQL indexes and what are the actual operations of MySQL indexes? bitsCN.com

The following articles mainly introduce the disadvantages of MySQL indexes and the actual operations of MySQL indexes, which deserves our attention, we may not know that using indexes too much will cause abuse. Therefore, MySQL indexes also have their disadvantages:
Although the index greatly improves the query speed, it also reduces the speed of updating the table, such as performing INSERT, UPDATE, and DELETE operations on the table. When updating a table, MySQL not only needs to save data, but also stores the index file.
Index files that occupy disk space. This problem is not serious in general, but if you create multiple composite indexes on a large table, the index file will expand very quickly.
Indexing is only a factor to improve efficiency. if your MySQL database has a large amount of data, you need to spend time researching and creating the best MySQL indexes or optimizing query statements.
Notes for using indexes
Tips and notes for using indexes:
1. The index does not contain columns with NULL values.
As long as the column contains a NULL value, it will not be included in the MySQL index. if a column in the composite index contains a NULL value, this column is invalid for this Composite Index. Therefore, do not set the default value of a field to NULL during database design.
2. use short indexes
Index a string or column. if possible, specify a prefix length. For example, if a CHAR (255) column exists and multiple values are unique within the first 10 or 20 characters, do not index the entire column. Short indexes not only increase query speed, but also save disk space and I/O operations.
3. index column sorting
MySQL queries only use one index. Therefore, if an index is already used in the where clause, order
By columns do not use indexes. Therefore, do not use the sorting operation when the database's default sorting can meet the requirements. try not to include the sorting of multiple columns. it is best to create a composite index for these columns if necessary.
4. like statement operation
Generally, like operations are not encouraged. if they are not usable, how to use them is also a problem. Like "% aaa %" does not use MySQL indexes, but like "aaa %" can use indexes.
5. do not perform operations on columns
Select * from users where YEAR (adddate) <2007; the operation will be performed on each row, which will cause the index to fail and scan the entire table, so we can change it
Select * from users where adddate <'2014-01-01 '; not in and <> operations are NOT used.
The above section describes the MySQL index type.


This article introduces the database index, and its advantages and disadvantages. The features and applications of MySQL indexes are described in detail. This article analyzes how to avoid MySQL unavailability, how to use EXPLAIN to analyze query statements, and how to optimize MySQL index applications.
An index is a special file (an index on an InnoDB data table is an integral part of a tablespace) that contains reference pointers to all records in the data table.
Note: [1] indexing is not omnipotent! Indexing speeds up data retrieval, but slows down data modification. Each time a data record is modified, the index must be refreshed once. To compensate for this defect in a program, many SQL commands have a DELAY_KEY_WRITE entry. This option is used to temporarily stop MySQL from refreshing the index immediately after each new record is inserted in the command and each existing record is modified, refresh the index until all records are inserted/modified. When many new records need to be inserted into a data table, the DELAY_KEY_WRITE option will play a significant role. [2] In addition, indexes also occupy a considerable amount of space on the hard disk. Therefore, you should create an index for the data columns that are most frequently queried and sorted. Note: If a data column contains a lot of duplicate content, creating an index for it will not have much practical effect.
Theoretically, you can create an index for each field in the data table, but MySQL limits the total number of indexes in the same data table to 16.
  1. InnoDB data table index
Compared with MyISAM data tables, indexes are much more important to InnoDB data. In the InnoDB data table, the index is more important to the InnoDB data table. In the InnoDB data table, indexes not only play a role in data record search, but also the metadata and basis of the row-level locking mechanism. "Row-level locking" means locking individual records being processed during the execution of transaction operations, so that other users are not allowed to access them. This locking will affect (but is not limited to) the SELECT... lock in share mode, SELECT... for update command and INSERT, UPDATE, and DELETE command.
For efficiency, row-level locking of InnoDB data tables actually occurs on their indexes, rather than on the data tables themselves. Apparently, the row-level locking mechanism is effective only when the relevant data table has a suitable index available for locking.
  2. restrictions
If the query condition of the WEHERE clause contains a non-equal sign (WHERE coloum! =...), MySQL will not be able to use the index.
Similarly, if the WHERE clause uses a function (where day (column) =...) in the query condition, MySQL cannot use the index.
In the JOIN operation (when data needs to be extracted from multiple data tables), MySQL can use indexes only when the data types of primary keys and foreign keys are the same.
If the query conditions of the WHERE clause use the comparison operators LIKE and REGEXP, MySQL can use the index only when the first character of the search template is not a wildcard. For example, if the query condition is LIKE 'ABC % ', MySQL uses an index. if the query condition is LIKE' % ABC', MySQL does not use an index.
In the order by Operation, MySQL uses indexes only when the sorting condition is not a query condition expression. (Even if indexes are available in queries involving multiple data tables, those indexes do not play a role in accelerating order)
If a data column contains many duplicate values, creating an index for it will not be very effective. For example, if a data column contains values such as "0/1" or "Y/N", there is no need to create an index for it.
  
  Common index, unique index, and primary index
  1. common index
The only task of a common INDEX (INDEX defined by the KEY or INDEX keyword) is to speed up data access. Therefore, you should create an index only for the data columns that most frequently appear in the query condition (WHERE column =...) or sort condition (order by column. If possible, you should select the most neat and compact data column (such as an integer data column) to create an index.
  2. unique index
Normal indexes allow indexed data columns to contain duplicate values. For example, because a person may have the same name, the same name may appear twice or more times in the same "employee profile" data table.
If you can determine that a data column will only contain different values, you should use the keyword UNIQUE to define it as a UNIQUE index when creating an index for this data column. The advantage of doing so: first, it simplifies MySQL's management of this index, and this index becomes more efficient. second, MySQL inserts a data table with a new record, automatically checks whether the value of this field of the new record has already exists in this field of a record; if yes, MySQL rejects the insert of that new record. That is to say, the unique index can ensure the uniqueness of data records. In fact, in many cases, the purpose of creating a unique index is not to speed up access, but to avoid data duplication.
  3. primary index
I have already repeatedly stressed that an index must be created for the primary key field. this index is called "primary Index ". The only difference between a PRIMARY index and a UNIQUE index is that the keywords used by the former During definition are PRIMARY rather than UNIQUE.
  4. Foreign key index
If a foreign key constraint is defined for a foreign key field, MySQL defines an internal index to help you manage and use foreign key constraints in the most efficient way.
  5. Composite Index
Indexes can cover multiple data columns, such as INDEX (columnA, columnB) indexes. This index features that MySQL can selectively use such an index. If you only need to use an INDEX on the columnA data column for the query operation, you can use a composite INDEX (columnA, columnB ). However, this method is only applicable to the combination of data columns in the composite index. For example, INDEX (A, B, C) can be used as an INDEX of A or (A, B), but cannot be used as B, C or (B, C).
  6. index length
When defining indexes for CHAR and VARCHAR data columns, you can limit the index length to a given number of characters (this number must be less than the maximum number of characters allowed by this field ). The advantage of this is that you can generate an index file with a relatively small size and fast retrieval speed. In most applications, most of the string data in the database is based on a variety of names, and the index length is set to 10 ~ 15 characters is enough to narrow the search range to a few data records.
The maximum index length allowed by MySQL is 255 characters.

  Full-text index
A common index on a text field can only accelerate the retrieval of strings (characters starting with the field content) at the top of the field content. If a field contains a large text segment consisting of several or even multiple words, the normal index will be useless. This kind of search usually appears in the form of LIKE % word %, which is very complicated for MySQL. if the amount of data to be processed is large, the response time will be very long.
This type of scenario is where full-text indexes can be used. When an index of this type is generated, MySQL creates a list of all the words that appear in the text, and searches for relevant data records based on the list. The full-text index can be created along with the data table, or you can use the following command to add a full-text index if necessary in the future:
Alter table tablename add fulltext (column1, column2)
With full-text indexes, you can use the SELECT query command to retrieve data records containing one or more given words. The basic syntax for such query commands is as follows:
SELECT * FROM tablename
Where match (column1, column2) AGAINST ('word1 ', 'word2', 'word3 ')
The preceding command will query all the data records of word1, word2, and word3 in column1 AND column2 fields.
  Annotation: InnoDB data tables do not support full-text indexing.

  Query and index optimization
The performance test results are of practical reference only when the database has enough test data. If there are only several hundred data records in the Test database, they are usually loaded into the memory after the first query command is executed, this will make subsequent query commands run very fast-whether or not indexes are used. The database performance test results are meaningful only when the number of records in the database exceeds 1000 and the total amount of data exceeds the total memory on the MySQL server.
People often get some help from the explain select command when they are not sure which columns should be used to create indexes. In fact, this simply adds an EXPLAIN keyword to a common SELECT command as the prefix. With this keyword, MySQL will not execute the SELECT command, but analyze it. MySQL Lists the query execution process and indexes (if any) in the form of tables.
In the output result of the EXPLAIN command, the 1st columns are the names of the data tables read from the database, which are listed in the Read order. The type column specifies the JOIN relationship between the data table and other data tables ). Among various types of associations, the most efficient is system, followed by const, eq_ref, ref, range, index, and All (All means: corresponding to each record in the data table at the upper level, all records in the data table must be read once-this situation can be avoided by a single line ).
The possible_keys data column lists the indexes available for MySQL to search for data records. The key data column is the index actually selected by MySQL. the length of this index calculated in bytes is provided in the key_len data column. For example, for an INTEGER data column index, the length of this byte will be 4. If a composite index is used, you can also see which parts of MySQL are used in the key_len data column. As a general rule, the smaller the value in the key_len data column, the better (faster ).
The ref data column provides the name of the data column in another data table in the association relationship. The row data column is the number of data rows that MySQL expects to read from the data table when executing this query. The product of all numbers in the row data column gives us a general idea of the number of combinations to be processed in this query.
Finally, the extra data column provides more information related to the JOIN operation. for example, if MySQL must create a temporary data table when executing this query, the using temporary is displayed in the extra column.

BitsCN.com
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.