亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

MySQL 8.0新特性-不可見索引

發布時間:2020-08-09 23:44:30 來源:ITPUB博客 閱讀:186 作者:哎呀我的天吶 欄目:MySQL數據庫

官方文檔: https://dev.mysql.com/doc/refman/8.0/en/invisible-indexes.html

MySQL 8.0 invisible index學習

MySQL支持不可見索引,即優化器不會使用該索引。 不可見索引特性不可以用于主鍵。

默認索引是可見的。可以在create table、create index、alter table操作中使用關鍵字visible、invisible來指定索引是否可見。

create table t1 (
 i int,
 j int,
 k int,
 index i_idx (i) invisible
) engine = innodb;
create index j_idx on t1 (j) invisible;
alter table t1 add index k_idx (k) invisible;

修改已經存在的索引的可見性:

alter table t1 alter index i_idx invisible;
alter table t1 alter index i_idx visible;

可以通過information_schema.statistics、show index查看索引的可見性:

>select index_name, is_visible
-> from information_schema.statistics
-> where table_schema = 'abce' and table_name = 't1';
+------------+------------+
| INDEX_NAME | IS_VISIBLE |
+------------+------------+
| i_idx      | NO         |
+------------+------------+
1 row in set (0.00 sec)
>show index from t1;
+-------+------------+----------+--------------+-------------+-----------+-------------+----------+--------+------+------------+---------+---------------+---------+------------+
| Table | Non_unique | Key_name | Seq_in_index | Column_name | Collation | Cardinality | Sub_part | Packed | Null | Index_type | Comment | Index_comment | Visible | Expression |
+-------+------------+----------+--------------+-------------+-----------+-------------+----------+--------+------+------------+---------+---------------+---------+------------+
| t1    |          1 | i_idx    |            1 | i           | A         |           0 |     NULL |   NULL | YES  | BTREE      |         |               | NO      | NULL       |
+-------+------------+----------+--------------+-------------+-----------+-------------+----------+--------+------+------------+---------+---------------+---------+------------+
1 row in set (0.00 sec)

不可見索引可以用來測試移除索引后對查詢性能的影響。 畢竟對于大表,刪除和重建索引是非常昂貴的操作。 系統變量optimizer_switch中的use_invisible_indexes標志控制了優化器是否使用不可見索引來構建執行計劃。 如果use_invisible_indexes=off(默認設置),優化器會忽略不可見索引;如果設置為on,索引仍然不可見,但是優化器在生成執行計劃的時候會考慮不可見索引。

化器在生成執行計劃的時候會考慮不可見索引。

mysql>show variables like '%optimizer_switch%'
index_merge=on,index_merge_union=on,index_merge_sort_union=on,index_merge_intersection=on,engine_condition_pushdown=on,index_condition_pushdown=on,mrr=on,mrr_cost_based=on,block_nested_loop=on,batched_key_access=off,materialization=on,semijoin=on,loosescan=on,firstmatch=on,duplicateweedout=on,subquery_materialization_cost_based=on,use_index_extensions=on,condition_fanout_filter=on,derived_merge=on,use_invisible_indexes=off,skip_scan=on |
返回行數:[1],耗時:14 ms.

MySQL 8.0新特性-不可見索引

舉例:

MySQL 8.0新特性-不可見索引

alter table t1 alter index i_idx invisible;

MySQL 8.0新特性-不可見索引

索引設置為不可見,優化器便不考慮此索引,也就是說如果沒有該特性,你就得刪除該索引和重建該索引來測

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

石屏县| 长寿区| 昆山市| 郸城县| 嵊泗县| 汶上县| 孝义市| 惠来县| 肃宁县| 崇义县| 包头市| 仁怀市| 乌拉特前旗| 银川市| 蓬溪县| 翼城县| 团风县| 龙陵县| 互助| 邹城市| 嘉兴市| 大理市| 米泉市| 建瓯市| 武汉市| 遂川县| 甘洛县| 平舆县| 浦东新区| 平江县| 福州市| 通江县| 邛崃市| 惠州市| 葫芦岛市| 元朗区| 谷城县| 四平市| 台中市| 天门市| 涞水县|