Find a file
Yueh-Hsuan Chiang 4bff7a8a87 Merge pull request #177 from nanwu/master
specify the command to install build_tools/mac-install-gflags.sh file in...
2014-06-17 15:52:37 -07:00
build_tools
coverage
db Add a table factory that can read DB with both of PlainTable and BlockBasedTable in it 2014-06-17 11:49:22 -07:00
doc
examples
hdfs
helpers/memenv
include Add a table factory that can read DB with both of PlainTable and BlockBasedTable in it 2014-06-17 11:49:22 -07:00
java
linters
port Add separate Read/WriteUnlock methods in MutexRW. 2014-06-16 15:41:46 -07:00
table Add a table factory that can read DB with both of PlainTable and BlockBasedTable in it 2014-06-17 11:49:22 -07:00
third-party/rapidjson
tools
util Merge pull request #176 from bgrainger/mutexrw-unlock 2014-06-17 20:38:06 +02:00
utilities
.arcconfig
.clang-format
.gitignore
.travis.yml
CONTRIBUTING.md
HISTORY.md Add a table factory that can read DB with both of PlainTable and BlockBasedTable in it 2014-06-17 11:49:22 -07:00
INSTALL.md specify the command to install build_tools/mac-install-gflags.sh file in doc 2014-06-17 17:03:21 -05:00
LICENSE
Makefile
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 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 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/