songpengwei / blog-comment

used for gitalk in blog next theme
0 stars 0 forks source link

微软提出的无锁 B 族树 —— Bw-Tree | 木鸟杂记 #74

Open songpengwei opened 2 years ago

songpengwei commented 2 years ago

https://www.qtmuniao.com/2021/10/17/bwtree-index/

概述Bw-tree 是 2013 年微软发表的相关论文提出的数据结构。考虑到多核机器和 SSD 日趋普及,结合两大存储引擎 B+-tree 和 LSM-tree 特点,提出了一种 latch-free、delta update、log structured 的 B族树 —— Bw-tree。 由于上述论文在实现细节上语焉不详,cmu 几个作者在 2015 年时实现了一版基于内存的 Bw-tree,