ForestDB 介绍
Forestdb 是一个快速的 Key-Value 存储引擎,基于层次B
+树单词查找树。由
Couchbase 缓存和存储团队开发。
关键特性:
-
Key 和 Value 可以是任意二进制值
-
可通过顺序号来获取 Value 值或者是 Key 的磁盘偏移量
-
Write-Ahead Logging (WAL) and its in-memory index are used to reduce the main index lookup / update overhead.
-
支持多版本并发控制 MVCC 和只追加的存储层
-
可创建多快照实例来提供数据库的不同视图
-
支持回滚
-
Ranged iteration by keys or sequence numbers is supported for a partial or full range lookup operation.
-
支持 read_committed 或者 read_uncommitted 事务隔离级别