Find a file
2014-05-15 10:16:58 -07:00
build_tools Fix building RocksDB in paths containing spaces -- quote path names in Makefile and build_detect_platform. 2014-05-10 21:01:25 -07:00
coverage
db Clean up compaction logging 2014-05-14 12:13:50 -07:00
doc
examples
hdfs Improve EnvHdfs 2014-05-14 12:14:18 -07:00
helpers/memenv
include Expose Status::code() 2014-05-14 16:23:40 -07:00
java Merge branch 'master' of github.com:facebook/rocksdb into show-reads 2014-05-13 16:45:54 -07:00
linters
port
table TablePropertiesCollectorFactory 2014-05-13 12:30:55 -07:00
tools Fix errors while building with clang 2014-05-15 12:34:53 +08:00
util Fix errors while building with clang 2014-05-15 12:34:53 +08:00
utilities
.arcconfig
.clang-format
.gitignore
.travis.yml Turn off travis notifications 2014-05-14 16:08:02 -07:00
CONTRIBUTING.md
HISTORY.md TablePropertiesCollectorFactory 2014-05-13 12:30:55 -07:00
INSTALL.md
LICENSE
Makefile Fix building RocksDB in paths containing spaces -- quote path names in Makefile and build_detect_platform. 2014-05-10 21:01:25 -07:00
PATENTS
README.md Add build status to README.md 2014-05-15 10:16:58 -07:00
ROCKSDB_LITE.md

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 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 an 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 doc/index.html and 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/