Go to file
Siying Dong 66a3a87ab3 Merge pull request #797 from SherlockNoMad/optionHelper
Support PlainTableOption in option_helper.cc
2015-10-30 09:44:11 -07:00
arcanist_util
build_tools Add LITE tests to Legocastle 2015-10-26 11:50:29 -07:00
coverage
db Clean and expose CreateLoggerFromOptions 2015-10-29 18:07:37 -07:00
doc
examples
hdfs
include/rocksdb Merge pull request #797 from SherlockNoMad/optionHelper 2015-10-30 09:44:11 -07:00
java
memtable
port "make format" in some recent commits 2015-10-29 17:11:14 -07:00
table Support PlainTableOption in option_helper 2015-10-28 23:01:33 -07:00
third-party
tools Fix compilation problem on Windows. 2015-10-29 11:29:18 -07:00
util Merge pull request #797 from SherlockNoMad/optionHelper 2015-10-30 09:44:11 -07:00
utilities Clean and expose CreateLoggerFromOptions 2015-10-29 18:07:37 -07:00
.arcconfig
.clang-format
.gitignore
.travis.yml
AUTHORS
CMakeLists.txt Write stress test 2015-10-28 16:15:07 -07:00
CONTRIBUTING.md
DUMP_FORMAT.md
HISTORY.md Clean and expose CreateLoggerFromOptions 2015-10-29 18:07:37 -07:00
INSTALL.md
LICENSE
Makefile Write stress test 2015-10-28 16:15:07 -07:00
PATENTS
README.md
ROCKSDB_LITE.md
USERS.md
Vagrantfile
WINDOWS_PORT.md
appveyor.yml
appveyordailytests.yml
src.mk Split posix storage backend into Env and library 2015-10-22 17:31:31 +02:00
thirdparty.inc

README.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 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/