The MySQL adaptive hash index

原文英文,约2400词,阅读约需9分钟。发表于:

The adaptive hash index help to improve performance of the already-fast B-tree lookups

MySQL使用B树索引进行查找,但自适应哈希索引(AHI)是一种更快的方法。AHI在内存中构建的哈希索引可以加速B树索引的查找,根据查询的重复性自动调整使用情况。在大数据集上,AHI可以显著提高性能,但也需要一定的开销。

The MySQL adaptive hash index
相关推荐 去reddit讨论