Mysql的索引是什么结构?

我在网上无数起看到文章说​​Mysql​​​的索引采用​​B+树​​​(当然还有别的我们这里只讨论​​B+树​​​),但是我看​​Mysql​​​的官方文当里面并没有用​​B+ tree​​​而是用的​​B-tree​​​我相信​​Mysql​​​的权威文档不会犯如此低级的错误。所以网上说使用​​B+树​​的根据是什么?

附上官方文档​​mysql索引​​第二段

Most MySQL indexes (`PRIMARY KEY`, `UNIQUE`, `INDEX`, and `FULLTEXT`) are stored in [B-trees](https://dev.mysql.com/doc/refman/8.0/en/glossary.html#glos_b_tree "B-tree")
Mysql
索引
2023-03-14 13:01:55
浏览
收藏 0
回答 1
待解决
回答 1
按赞同
/
按时间
小猫的老公
1

The use of the term B-tree is intended as a reference to the general class of index design. B-tree structures used by MySQL storage engines may be regarded as variants due to sophistications not present in a classic B-tree design.

我看文档上的解释,​​B-tree​​一词应该包含了题主所说的​​B+树​​和​​B-tree​​。

分享
微博
QQ
微信
回复
2023-03-14 14:42:00
相关问题
PolarDB 进程结构是什么
792浏览 • 1回复 待解决
PolarDB 数据块结构是什么
1006浏览 • 1回复 待解决
PolarDB 数据库结构是什么
1230浏览 • 1回复 待解决
mysql 索引问题有知道吗?
850浏览 • 1回复 待解决
RDS MYSQL 如何重建索引
1179浏览 • 1回复 待解决
mysql b+树索引关键码是怎么来
467浏览 • 1回复 待解决
在MongoDb中什么索引
2211浏览 • 1回复 待解决
InnoDB为什么需要自适应Hash索引
659浏览 • 1回复 待解决
OB支持索引类型都有哪些?
3966浏览 • 1回复 待解决
如何创建MongoDB索引
728浏览 • 1回复 待解决