Find a file
sdong 254c4fb88f In HISTORY.md Switch unreleased notes to 3.13
Summary: Prepare release notes for 3.13.

Test Plan: Text only

Reviewers: yhchiang, IslamAbdelRahman, rven, anthony

Reviewed By: anthony

Subscribers: leveldb, dhruba

Differential Revision: https://reviews.facebook.net/D43665
2015-08-06 14:02:44 -07:00
arcanist_util
build_tools
coverage
db Avoid type unique_ptr in LogWriterNumber::writer for Windows build break 2015-08-06 10:52:41 -07:00
doc
examples
hdfs
include/rocksdb Add Statistics.getHistogramString() to print more detailed outputs of a histogram 2015-08-05 20:05:56 -07:00
java
port
table
third-party
tools
util Fix delete_scheduler_test valgrind error 2015-08-06 10:56:00 -07:00
utilities Add function 'GetInfoLogList()' 2015-08-05 16:16:46 -07:00
.arcconfig
.clang-format
.gitignore
.travis.yml
AUTHORS
CMakeLists.txt Add util/delete_scheduler_impl.cc to CMakeLists.txt 2015-08-05 20:56:04 -07:00
CONTRIBUTING.md
DUMP_FORMAT.md
HISTORY.md In HISTORY.md Switch unreleased notes to 3.13 2015-08-06 14:02:44 -07:00
INSTALL.md
LICENSE
Makefile valgrind_check to exit on test failures 2015-08-05 17:46:09 -07:00
PATENTS
README.md
ROCKSDB_LITE.md
src.mk Add function 'GetInfoLogList()' 2015-08-05 16:16:46 -07:00
thirdparty.inc
USERS.md
Vagrantfile
WINDOWS_PORT.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/