Find a file
Peter Dillinger 22fea0ba79 Fix unused variable in release build
Summary: Pull Request resolved: https://github.com/facebook/rocksdb/pull/6237

Differential Revision: D19210304

Pulled By: pdillinger

fbshipit-source-id: f6f050e995f4d210f812bb1d2020adbd751e1d5a
2019-12-21 20:58:30 -08:00
buckifier
build_tools
cache
cmake
coverage
db Fix potential overflow in CalculateSSTWriteHint() (#6212) 2019-12-18 17:04:15 -08:00
db_stress_tool Fix unused variable in release build 2019-12-21 20:58:30 -08:00
docs
env Fix unity test (#6178) 2019-12-14 15:39:41 -08:00
examples
file Prevent file prefetch when mmap is enabled. (#6206) 2019-12-18 11:01:29 -08:00
hdfs
include/rocksdb delete superversions in BackgroundCallPurge (#6146) 2019-12-17 13:22:57 -08:00
java RocksDB#keyMayExist should not assume database values are unicode strings (#6186) 2019-12-20 14:27:58 -08:00
logging Introduce a new storage specific Env API (#5761) 2019-12-13 14:48:41 -08:00
memory
memtable
monitoring
options Introduce a new storage specific Env API (#5761) 2019-12-13 14:48:41 -08:00
port
table BlockBasedTable::ApproximateSize() should use total order seek (#6222) 2019-12-19 14:56:38 -08:00
test_util Introduce a new storage specific Env API (#5761) 2019-12-13 14:48:41 -08:00
third-party
tools Generate variable length keys in db_stress (#6165) 2019-12-20 21:10:33 -08:00
trace_replay
util crash_test to cover bottommost compression and some other changes (#6215) 2019-12-20 16:14:52 -08:00
utilities Log garbage_collection_cutoff alongside the other BlobDB options 2019-12-20 11:00:53 -08:00
.clang-format
.gitignore
.lgtm.yml
.travis.yml Small tidy and speed up of the travis build (#6181) 2019-12-17 13:56:45 -08:00
.watchmanconfig
appveyor.yml
AUTHORS
CMakeLists.txt Introduce a new storage specific Env API (#5761) 2019-12-13 14:48:41 -08:00
CODE_OF_CONDUCT.md
CONTRIBUTING.md
COPYING
DEFAULT_OPTIONS_HISTORY.md
defs.bzl
DUMP_FORMAT.md
HISTORY.md RocksDB#keyMayExist should not assume database values are unicode strings (#6186) 2019-12-20 14:27:58 -08:00
INSTALL.md
issue_template.md
LANGUAGE-BINDINGS.md
LICENSE.Apache
LICENSE.leveldb
Makefile Add more verification to db_stress (#6173) 2019-12-20 08:49:29 -08:00
README.md
ROCKSDB_LITE.md
src.mk Introduce a new storage specific Env API (#5761) 2019-12-13 14:48:41 -08:00
TARGETS Introduce a new storage specific Env API (#5761) 2019-12-13 14:48:41 -08:00
thirdparty.inc
USERS.md
Vagrantfile
WINDOWS_PORT.md

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

Linux/Mac Build Status Windows Build status PPC64le 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 especially 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/

License

RocksDB is dual-licensed under both the GPLv2 (found in the COPYING file in the root directory) and Apache 2.0 License (found in the LICENSE.Apache file in the root directory). You may select, at your option, one of the above-listed licenses.