This repository is not active
chonrp27512/leveldb
LevelDB is a fast key-value storage library written at Google that provides an ordered mapping from string keys to string values.Leveldb是一个google实现的非常高效的kv数据库,目前的版本1.2能够支持billion级别的数据量了。 在这个数量级别下还有着非常高的性能,主要归功于它的良好的设计。特别是LSM算法。
C++BSD-3-Clause