Find a file
Yanqin Jin 231fffd07c Add Env::SanitizeEnvOptions (#5885)
Summary:
Add Env::SanitizeEnvOptions to allow underlying environments properly
configure env options.
Pull Request resolved: https://github.com/facebook/rocksdb/pull/5885

Test Plan:
```
make check
```

Differential Revision: D17910327

Pulled By: riversand963

fbshipit-source-id: 86a1ac616e485742c35c4a9cc9f1227c529fc00f
2019-10-14 12:25:00 -07:00
buckifier
build_tools Remove deprecated RocksDBCommonHelper and cont_integration.sh (#5889) 2019-10-09 07:40:35 -07:00
cache
cmake
coverage
db OnTableFileCreationCompleted use "(nil)" for empty file during flush (#5905) 2019-10-14 09:54:10 -07:00
docs
env Add Env::SanitizeEnvOptions (#5885) 2019-10-14 12:25:00 -07:00
examples
file
hdfs
include/rocksdb Add Env::SanitizeEnvOptions (#5885) 2019-10-14 12:25:00 -07:00
java Fix the rocksjava release Vagrant build on CentOS (#5901) 2019-10-10 17:21:18 -07:00
logging
memory
memtable
monitoring
options
port Fix block cache ID uniqueness for Windows builds (#5844) 2019-10-11 18:19:31 -07:00
table Fix SeekForPrev bug with Partitioned Filters and Prefix (#5907) 2019-10-11 20:30:00 -07:00
test_util
third-party
tools Enable partitioned index/filter in stress tests (#5918) 2019-10-14 10:35:18 -07:00
trace_replay
util MultiGet batching in memtable (#5818) 2019-10-10 09:39:39 -07:00
utilities Fix block cache ID uniqueness for Windows builds (#5844) 2019-10-11 18:19:31 -07:00
.clang-format
.gitignore
.lgtm.yml
.travis.yml Remove a webhook due to potential security concern (#5902) 2019-10-10 18:05:16 -07:00
.watchmanconfig
appveyor.yml
AUTHORS
CMakeLists.txt filter_bench - a prelim tool for SST filter benchmarking (#5825) 2019-10-07 20:10:53 -07:00
CODE_OF_CONDUCT.md
CONTRIBUTING.md
COPYING
DEFAULT_OPTIONS_HISTORY.md
defs.bzl
DUMP_FORMAT.md
HISTORY.md OnTableFileCreationCompleted use "(nil)" for empty file during flush (#5905) 2019-10-14 09:54:10 -07:00
INSTALL.md
issue_template.md
LANGUAGE-BINDINGS.md
LICENSE.Apache
LICENSE.leveldb
Makefile filter_bench - a prelim tool for SST filter benchmarking (#5825) 2019-10-07 20:10:53 -07:00
README.md
ROCKSDB_LITE.md
src.mk
TARGETS
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.