Find a file
2014-07-24 17:31:23 -07:00
build_tools
coverage
db Fixed compaction-related errors where number of input levels are hard-coded. 2014-07-24 17:06:00 -07:00
doc
examples
hdfs
helpers/memenv
include SpatialDB change API 2014-07-24 16:39:33 -04:00
java [Java] Add compaction style to options 2014-07-23 15:45:30 -07:00
linters
port
table Addressing TODOs in CuckooTableBuilder 2014-07-24 10:07:41 -07:00
third-party/rapidjson
tools
util Fixed a compile error in util/options_builder.cc 2014-07-23 10:31:32 -07:00
utilities Fix valgrind test 2014-07-24 17:31:23 -07:00
.arcconfig
.clang-format
.gitignore
.travis.yml
CONTRIBUTING.md
HISTORY.md
INSTALL.md
LICENSE
Makefile SpatialDB 2014-07-23 14:22:58 -04:00
PATENTS
README.md
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 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/