Query BackgroundThere is a table tmp_test_course with about 100,000 records, and then there is a json field called outline, which stores a one-to-many relationship (saves multiple codes, such as jy1577683381775) We need to retrieve specific types of data from these 100,000 records. The total target data volume is: SELECT COUNT(*) FROM tmp_test_course WHERE `type`=5 AND del=2 AND is_leaf=1 While limiting the above types, we must also include any of the following codes (that is, OR query)
The following lists four ways to query the outline field, giving the corresponding query time and number of scanned rows. 1. Like queryIt took 248 milliseconds SELECT * FROM tmp_test_course WHERE `type`=5 AND del=2 AND is_leaf=1 AND ( outline like '%jy1577683381775%' OR outline like '%jy1577683380808%' OR outline like '%jy1577683379178%' OR outline like '%jy1577683378676%' OR outline like '%jy1577683377617%' OR outline like '%jy1577683376672%' OR outline like '%jy1577683375903%' OR outline like '%jy1578385720787%' OR outline like '%jy1499916986208%' OR outline like '%jy1499917112460%' OR outline like '%jy1499917093400%' OR outline like '%jy1499917335579%' OR outline like '%jy1499917334770%' OR outline like '%jy1499917333339%' OR outline like '%jy1499917331557%' OR outline like '%jy1499917330833%' OR outline like '%jy1499917329615%' OR outline like '%jy1499917328496%' OR outline like '%jy1576922006950%' OR outline like '%jy1499916993558%' OR outline like '%jy1499916992308%' OR outline like '%jy1499917003454%' OR outline like '%jy1499917002952%' ) The EXPLAIN analysis results are as follows: Full table scan 2. JSON function queryjson official function It took 196 milliseconds, which is slightly faster. SELECT * FROM tmp_test_course WHERE `type`=5 AND del=2 AND is_leaf=1 AND ( JSON_SEARCH(outline, 'one', 'jy1577683381775') IS NOT NULL OR JSON_SEARCH(outline, 'one', 'jy1577683380808') IS NOT NULL OR JSON_SEARCH(outline, 'one', 'jy1577683379178') IS NOT NULL OR JSON_SEARCH(outline, 'one', 'jy1577683378676') IS NOT NULL OR JSON_SEARCH(outline, 'one', 'jy1577683377617') IS NOT NULL OR JSON_SEARCH(outline, 'one', 'jy1577683376672') IS NOT NULL OR JSON_SEARCH(outline, 'one', 'jy1577683375903') IS NOT NULL OR JSON_SEARCH(outline, 'one', 'jy1578385720787') IS NOT NULL OR JSON_SEARCH(outline, 'one', 'jy1499916986208') IS NOT NULL OR JSON_SEARCH(outline, 'one', 'jy1499917112460') IS NOT NULL OR JSON_SEARCH(outline, 'one', 'jy1499917093400') IS NOT NULL OR JSON_SEARCH(outline, 'one', 'jy1499917335579') IS NOT NULL OR JSON_SEARCH(outline, 'one', 'jy1499917334770') IS NOT NULL OR JSON_SEARCH(outline, 'one', 'jy1499917333339') IS NOT NULL OR JSON_SEARCH(outline, 'one', 'jy1499917331557') IS NOT NULL OR JSON_SEARCH(outline, 'one', 'jy1499917330833') IS NOT NULL OR JSON_SEARCH(outline, 'one', 'jy1499917329615') IS NOT NULL OR JSON_SEARCH(outline, 'one', 'jy1499917328496') IS NOT NULL OR JSON_SEARCH(outline, 'one', 'jy1576922006950') IS NOT NULL OR JSON_SEARCH(outline, 'one', 'jy1499916993558') IS NOT NULL OR JSON_SEARCH(outline, 'one', 'jy1499916992308') IS NOT NULL OR JSON_SEARCH(outline, 'one', 'jy1499917003454') IS NOT NULL OR JSON_SEARCH(outline, 'one', 'jy1499917002952') IS NOT NULL ) The EXPLAIN analysis results are as follows, or a full table scan 3. Joint Index QueryNext, create a joint index for the table (I originally wanted to create an index of type-del-is_leaf-outline, but the outline field is too long, so I only added a joint index of type-del-is_leaf ALTER TABLE tmp_test_course ADD KEY `type-del-is_leaf` (`type`,`del`,`is_leaf`) After adding the index, the like and json queries are significantly accelerated. The EXPLAIN analysis results are as follows. The number of rows scanned by both queries is limited to 2931 rows. 4. Full-text index queryBecause full-text indexes only support CHAR, VARCHAR, and TEXT, we need to change the JSON field definition. ALTER TABLE tmp_test_course MODIFY `outline` VARCHAR(1024) NOT NULL DEFAULT '[]' Add full-text index ALTER TABLE tmp_test_course ADD FULLTEXT INDEX outline (outline); Now let's use the full-text index to search SELECT * FROM tmp_test_course WHERE `type`=5 AND del=2 AND is_leaf=1 AND MATCH(outline) AGAINST ('jy1577683381775 jy1577683380808 jy1577683379178 jy1577683378676 jy1577683377617 jy1577683376672 jy1577683375903 jy1578385720787 jy1499916986208 jy1499917112460 jy1499917093400 jy1499917335579 jy1499917334770 jy1499917333339 jy1499917331557 jy1499917330833 jy1499917329615 jy1499917328496 jy1576922006950 jy1499916993558 jy1499916992308 jy1499917003454 jy1499917002952') It takes 11.6 milliseconds, and the speed is significantly improved, which shows the power of full-text indexing. The EXPLAIN analysis results are as follows, showing that only one row was scanned in conclusion The following are the execution results of 4 cases
Conclusion: Full-text index > Joint index > JSON function query > Like query The larger the amount of data, the faster the full-text indexing speed is. For a table with 100,000 data points, the query speed is about 20 times faster than direct query. If the table has millions or tens of millions of data points, the improvement will be even greater. So if possible, use full-text indexing. This is the end of this article about which is faster, MySQL full-text index, combined index, like query, or json query. For more information about mysql full-text index, combined index, like query, and json query, please search 123WORDPRESS.COM's previous articles or continue to browse the following related articles. I hope you will support 123WORDPRESS.COM in the future! You may also be interested in:
|
<<: Vue implements form validation function
>>: Study notes to write the first program of Vue
All content in this blog is licensed under Creati...
Preface We often say that node is not a new progr...
brew install nginx Apple Mac uses brew to install...
1. Overview Users expect the web applications the...
1. Varnish Overview 1. Introduction to Varnish Va...
Table of contents Preface style-loader css-loader...
A distinct Meaning: distinct is used to query the...
Let's briefly sort out the configuration of s...
Written in front I don’t know who first discovere...
Two-column layout is often used in projects. Ther...
Table of contents SSH protocol SSH Connection pro...
This article uses an example to describe how to c...
Table of contents Preface Browser compiled versio...
<br />Original text: http://jorux.com/archiv...