码迷,mamicode.com
首页 > 其他好文 > 详细

B-Tree indexs

时间:2016-10-12 00:57:48      阅读:205      评论:0      收藏:0      [点我收藏+]

标签:

mysql_High.Performance.MySQL.3rd.Edition.Mar.2012

A B-Tree index speeds up data access because the storage engine doesn’t have to scan
the whole table to find the desired data. Instead, it starts at the root node (not shown
in this figure). The slots in the root node hold pointers to child nodes, and the storage
engine follows these pointers. It finds the right pointer by looking at the values in the
node pages, which define the upper and lower bounds of the values in the child nodes.
Eventually, the storage engine either determines that the desired value doesn’t exist or
successfully reaches a leaf page.

B-Tree indexs

标签:

原文地址:http://www.cnblogs.com/yuanjiangw/p/5951218.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!