In addition to B-Tree indexes, MySQL also provides the following indexes:
Only supported by the Memory engine, simple scenarios
A special index type of MyISAM, mainly used for geographic spatial data types
A special index of MyISAM, mainly used for full-text indexing. Starting from MySQL 5.6, InnoDB supports full-text indexing. Index/ Storage EngineMyISAMInnoDBMemoryB-Tree IndexSupportSupportSupportHASH IndexSupportSupportSupportR-Tree IndexSupportSupportFull-text IndexSupportSupportSupport The most commonly used indexes are B-tree index and Hash index, and only Memory and NDB engines support Hash index. Hash index is suitable for key-value query, and query through Hash index is faster than B-tree index. However, Hash indexes do not support range searches such as <><==, >==, etc. Memory will use hash index only under the condition of "=" MySQL 8.0 supports functional indexes. Before that, only the front part of a column could be indexed. For example, for a title field, only the first 10 characters of the title could be indexed. This feature greatly reduces the size of the index file, but prefix indexes also have disadvantages and are invalid during order by and group by operations. create index idx_title on film(title(10)); 1 FeaturesThere is only an array, a hash function is used to convert the key into a certain memory location, and then the value is placed at that location in the array. When using hash, there is a natural possibility of hash conflicts, and MySQL uses the zipper method to resolve it. Hash indexes are implemented based on hash tables. Hash indexes can only be used when the query conditions exactly match the columns in the hash index. For all columns in the Hash index, the storage engine calculates a hashcode for each row, and the hashcode is stored in the Hash index.
For example, we want to check the username corresponding to ID_card_n4:
The four ID_card_n values do not necessarily increase in sequence, so even if a new User is added, the speed is fast and only needs to be appended at the end. Of course, the disadvantage is also obvious. It is not ordered, so the hash index is very slow for interval query. For example, if you want to find all users whose ID numbers are in the range [ID_card_X, ID_card_Y], you must scan the entire table. 2 Hash index defects
To make InnoDB or MyISAM support hash index, it can be implemented through pseudo-hash index, called adaptive hash index. You can add a field to store the hash value, index the hash value, and create a trigger to automatically add the calculated hash to the table when inserting and updating. The hash table structure is suitable for scenarios where only equal value queries are required, such as Memcached. 3 Case ApplicationSuppose there is a very large table, for example, when a user logs in, you need to retrieve the user by email. If you create an index directly on the email column, in addition to index range matching, you also need to perform string matching. It's okay if the email is short, but if it's long, the query cost will be relatively high. If at this time, a hash index is created on email and the query is performed using int, the performance will be much faster than a string comparison query. Hash AlgorithmsTo create a hash index, you must first select a hash algorithm, such as the CRC32 algorithm mentioned in "High Performance MySQL". INSERT UPDATE SELECT OperationsAdd a hash value field to the table: ALTER TABLE `User` ADD COLUMN email_hash int unsigned NOT NULL DEFAULT 0; The next step is to automatically update the email_hash field during UPDATE and INSERT, which is achieved through triggers: DELIMITER | CREATE TRIGGER user_hash_insert BEFORE INSERT ON `User` FOR EACH ROW BEGIN SET NEW.email_hash=crc32(NEW.email); END; | CREATE TRIGGER user_hash_update BEFORE UPDATE ON `User` FOR EACH ROW BEGIN SET NEW.email_hash=crc32(NEW.email); END; | DELIMITER ; The SELECT request will then become: SELECT `email`, `email_hash` FROM `User` WHERE email_hash = CRC32(“[email protected]”) AND `email` = "[email protected]";
AND email = "[email protected]" is to prevent data inaccuracy in case of hash collision. This is the end of this article on how to set up Hash index in MySQL interview questions. For more information about setting up Hash index in MySQL, please search for previous articles on 123WORDPRESS.COM or continue to browse the related articles below. I hope you will support 123WORDPRESS.COM in the future! You may also be interested in:
|
<<: Two methods to stretch the background image of a web page
>>: Basic learning tutorial of table tag in HTML
Why use prettier? In large companies, front-end d...
During the development process, we often use the ...
Step 1: Add Ubuntu source Switch to root su root ...
Install CentOS 7 after installing VirtualBox. I w...
Install memcached yum install -y memcached #Start...
Table of contents What is a web container? The Na...
I recently deployed MySQL 5.6 and found that by d...
English: A link tag will automatically complete h...
In the Linux environment, you want to check wheth...
A few days ago, I saw an example written by @Kyle...
Docker is an open source project that provides an...
introduction The previous article introduced the ...
MySQL 5.7.13 installation tutorial for Mac, very ...
Step 1: Sign a third-party trusted SSL certificat...
After I installed MySQL, when I tried to save and...