Find a file
sdong 6170fec251 Fix build broken by previous commit of "option helper refactor"
Summary:
The commit of option helper refactor broken the build:
(1) a git merge problem
(2) some uncaught compiler warning
Fix it.

Test Plan: Make sure "make all" passes

Reviewers: anthony, IslamAbdelRahman, rven, kradhakrishnan, yhchiang

Reviewed By: yhchiang

Subscribers: leveldb, dhruba

Differential Revision: https://reviews.facebook.net/D50943
2015-11-17 16:52:54 -08:00
arcanist_util
build_tools Run tests imporvements 2015-11-12 14:42:38 -08:00
coverage
db Fix uninitilizeded SpecialEnv::time_elapse_only_sleep_ 2015-11-17 16:22:17 -08:00
doc Lint everything 2015-11-16 12:56:21 -08:00
examples Add OptionsUtil::LoadOptionsFromFile() API 2015-11-12 06:52:43 -08:00
hdfs
include/rocksdb Move to version 4.3 2015-11-16 14:29:08 -08:00
java Lint everything 2015-11-16 12:56:21 -08:00
memtable Enable C4305 'identifier' : truncation from 'type1' to 'type2' 2015-11-06 16:44:39 -08:00
port Remove headers from the cc since they are in the module's header. 2015-11-16 15:08:11 -08:00
table Fix build broken by previous commit of "option helper refactor" 2015-11-17 16:52:54 -08:00
third-party Lint everything 2015-11-16 12:56:21 -08:00
tools
util Fix build broken by previous commit of "option helper refactor" 2015-11-17 16:52:54 -08:00
utilities Fix build broken by previous commit of "option helper refactor" 2015-11-17 16:52:54 -08:00
.arcconfig
.clang-format
.gitignore
.travis.yml
appveyor.yml Run tests imporvements 2015-11-12 14:42:38 -08:00
AUTHORS
CMakeLists.txt Remove forward_iter_bench from Win build. 2015-11-16 11:10:58 -08:00
CONTRIBUTING.md
DUMP_FORMAT.md
HISTORY.md Move to version 4.3 2015-11-16 14:29:08 -08:00
INSTALL.md
LICENSE
Makefile Fix Java Makefile 2015-11-17 13:50:54 -08:00
PATENTS
README.md
ROCKSDB_LITE.md
src.mk Reuse file iterators in tailing iterator when memtable is flushed 2015-11-13 15:50:59 -08: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/