Find a file
Siying Dong bb530c0f47 Merge pull request #240 from ShaoYuZhang/master
Fix compilation issue on OSX
2014-08-21 18:16:15 -07:00
build_tools Changes to support unity build: 2014-08-11 13:22:47 -04:00
coverage
db Fix the error of c_test.c 2014-08-20 17:05:29 -07:00
doc
examples
hdfs
helpers/memenv
include Improve Options sanitization and add MmapReadRequired() to TableFactory 2014-08-20 15:53:39 -07:00
java [Java] Add purgeOldBackups API 2014-08-14 10:58:09 -07:00
linters
port generic rate limiter 2014-07-08 11:41:57 -07:00
table Fix compilation issue on OSX 2014-08-21 18:11:33 -07:00
third-party/rapidjson
tools fix_sst_dump_for_old_sst_format 2014-08-14 09:59:41 -07:00
util Eliminate VersionSet memory leak 2014-08-20 13:52:03 -07:00
utilities Optimize storage parameters for spatialDB 2014-08-20 11:14:01 -07:00
.arcconfig
.clang-format
.gitignore Changes to support unity build: 2014-08-11 13:22:47 -04:00
.travis.yml
CONTRIBUTING.md facebook accounts are not required for CLA signers 2014-07-08 05:57:54 -04:00
HISTORY.md WriteBatchWithIndex: a wrapper of WriteBatch, with a searchable index 2014-08-18 16:37:38 -07:00
INSTALL.md
LICENSE
Makefile WriteBatchWithIndex: a wrapper of WriteBatch, with a searchable index 2014-08-18 16:37:38 -07: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/