leveldb-handbook icon indicating copy to clipboard operation
leveldb-handbook copied to clipboard

Analysis leveldb source code step by step

Results 3 leveldb-handbook issues
Sort by recently updated
recently updated
newest added

sstable 一章中介绍“data block 结构”的例子中,第二个 restart point 的值应为 17 而不是 16。错误的图片如下:![](https://leveldb-handbook.readthedocs.io/zh/latest/_images/datablock_example_2.jpeg) 验证代码: ```cpp #include #include #include "leveldb/options.h" #include "table/block_builder.h" int main() { leveldb::Options options; options.block_restart_interval = 2; leveldb::BlockBuilder builder(&options); builder.Add("deck", "v1");...

读写操作>写操作>原子性 最后一句:“后者,写日志已经完成,已经数据未真正持久化” 中“已经”是不是应该是“但是”?