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")
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(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
。