Find a file
2014-11-03 04:42:28 +08:00
build_tools exclude mock test file from MOCK_SOURCES 2014-10-31 15:07:27 -07:00
coverage
db Move VersionBuilder logic to a separate .cc file 2014-10-31 16:34:38 -07:00
doc
examples add make clean in examples makefile 2014-11-03 04:42:28 +08:00
hdfs
helpers/memenv
include Move convenience.h to /include 2014-10-31 12:08:43 -07:00
java
linters
port Turn on -Wshadow 2014-10-31 11:59:54 -07:00
table Turn on -Wshadow 2014-10-31 11:59:54 -07:00
third-party/rapidjson
tools Revert "Fix lint errors and coding style of ldb related codes." 2014-10-31 19:22:49 -07:00
util Revert "Fix lint errors and coding style of ldb related codes." 2014-10-31 19:22:49 -07:00
utilities Move convenience.h to /include 2014-10-31 12:08:43 -07:00
.arcconfig
.clang-format
.gitignore
.travis.yml
AUTHORS
CONTRIBUTING.md
HISTORY.md
INSTALL.md
LICENSE
Makefile introduce TestMemEnv and use it in db_test 2014-10-31 15:08:10 -07:00
PATENTS
README.md
ROCKSDB_LITE.md
Vagrantfile

RocksDB: A Persistent Key-Value Store for Flash and RAM Storage

Build Status

RocksDB is developed and maintained by Facebook Database Engineering Team. It is built on earlier work on LevelDB by Sanjay Ghemawat (sanjay@google.com) and Jeff Dean (jeff@google.com)

This code is a library that forms the core building block for a fast key value server, especially suited for storing data on flash drives. It has a Log-Structured-Merge-Database (LSM) design with flexible tradeoffs between Write-Amplification-Factor (WAF), Read-Amplification-Factor (RAF) and Space-Amplification-Factor (SAF). It has multi-threaded compactions, making it specially suitable for storing multiple terabytes of data in a single database.

Start with example usage here: https://github.com/facebook/rocksdb/tree/master/examples

See the github wiki for more explanation.

The public interface is in include/. Callers should not include or rely on the details of any other header files in this package. Those internal APIs may be changed without warning.

Design discussions are conducted in https://www.facebook.com/groups/rocksdb.dev/