A library that provides an embeddable, persistent key-value store for fast storage.
Go to file
Yi Wu 41fe9ad75b Hide usage of compaction_options_fifo from lite build
Summary:
...to fix lite build error.
Closes https://github.com/facebook/rocksdb/pull/2046

Differential Revision: D4785910

Pulled By: yiwu-arbug

fbshipit-source-id: b591f27
2017-03-28 13:39:13 -07:00
arcanist_util
build_tools non_shm CI should run tests on /tmp 2017-03-23 15:24:12 -07:00
cmake/modules
coverage
db Configure index partition size 2017-03-28 12:09:12 -07:00
docs Blog post for releasing 5.2.1 2017-03-22 17:54:18 -07:00
examples Update .gitignore file in examples 2017-03-23 11:24:14 -07:00
hdfs
include/rocksdb Configure index partition size 2017-03-28 12:09:12 -07:00
java Fix jni library name for PowerPC Architecture 2017-03-27 14:09:11 -07:00
memtable
port Fix random access alignment 2017-03-08 17:09:11 -08:00
table Configure index partition size 2017-03-28 12:09:12 -07:00
third-party
tools Hide usage of compaction_options_fifo from lite build 2017-03-28 13:39:13 -07:00
util Configure index partition size 2017-03-28 12:09:12 -07:00
utilities Allow checkpointing without flushing 2017-03-21 18:09:13 -07:00
.arcconfig
.clang-format
.gitignore
.travis.yml Move db_test and external_sst_file_test out of Travis's MAC OS run 2017-03-06 09:39:15 -08:00
appveyor.yml Separate small subset tests in DBTest 2017-02-27 12:24:11 -08:00
AUTHORS
CMakeLists.txt Refactoring 2017-03-03 18:24:12 -08:00
CONTRIBUTING.md
DEFAULT_OPTIONS_HISTORY.md
DUMP_FORMAT.md
HISTORY.md HISTORY.md for log_size_for_flush in CreateCheckpoint() 2017-03-22 11:24:12 -07:00
INSTALL.md INSTALL: document USE_SSE 2017-03-17 11:54:11 -07:00
LANGUAGE-BINDINGS.md Adding Dlang to the list 2017-02-16 17:24:10 -08:00
LICENSE
Makefile Fix jni library name for PowerPC Architecture 2017-03-27 14:09:11 -07:00
PATENTS
README.md
ROCKSDB_LITE.md
src.mk Refactoring 2017-03-03 18:24:12 -08:00
thirdparty.inc
USERS.md
Vagrantfile
WINDOWS_PORT.md

RocksDB: A Persistent Key-Value Store for Flash and RAM Storage

Build Status 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/