RocksDB:Memtable读写流程 + InlineSkipList + key encode/decode
文章目录InlineSkipList数据结构SkipList数据访问MemtableKeykeyencode:key编码keydecode:key解码keycompare:key比较Insert流程代码流程支持写并发Get流程LookupKey代码流程参考文献InlineSkipListRocksDB使用skiplist作为内存的基本数据结构,skiplist的介绍可以查看网上资料。数据结构cla