Find a file
Brent Garber affd833690 Fix introduced in 2ab7065 was reverted by 18285c1.
Corrects:

db/memtablerep_bench.cc:135:22: error: ‘FLAGS_env’ defined but not used [-Werror=unused-variable]
 static rocksdb::Env* FLAGS_env = rocksdb::Env::Default();
                      ^
cc1plus: all warnings being treated as errors
Makefile:1147: recipe for target 'db/memtablerep_bench.o' failed
2015-11-02 15:35:45 -05:00
arcanist_util Fix linters on non-fb machines 2015-08-11 11:36:12 -07:00
build_tools Fix to CI jobs. 2015-09-19 17:33:06 -07:00
coverage
db Fix introduced in 2ab7065 was reverted by 18285c1. 2015-11-02 15:35:45 -05:00
doc
examples Fix compact_files_example 2015-08-25 12:29:44 -07:00
hdfs [Cleanup] Remove RandomRWFile 2015-08-12 10:18:59 -07:00
include/rocksdb Support for SingleDelete() 2015-09-17 11:42:56 -07:00
java Exit with non-zero status if one or more Java tests fail 2015-09-18 15:26:01 +01:00
port Address code review comments both GH and internal 2015-09-11 17:36:48 -07:00
table Support for SingleDelete() 2015-09-17 11:42:56 -07:00
third-party
tools Support for SingleDelete() 2015-09-17 11:42:56 -07:00
util Support for SingleDelete() 2015-09-17 11:42:56 -07:00
utilities Fix non-deterministic failure in backupable_db_test 2015-09-17 20:14:51 -07:00
.arcconfig
.clang-format
.gitignore
.travis.yml Fix clang-format on Travis 2015-09-18 10:15:02 -07:00
appveyor.yml
AUTHORS
CMakeLists.txt Refactored common code of Builder/CompactionJob out into a CompactionIterator 2015-09-10 14:35:25 -07:00
CONTRIBUTING.md
DUMP_FORMAT.md
HISTORY.md Support for SingleDelete() 2015-09-17 11:42:56 -07:00
INSTALL.md Fixed a typo in INSTALL.md 2015-09-03 19:46:09 -07:00
LICENSE
Makefile Support for SingleDelete() 2015-09-17 11:42:56 -07:00
PATENTS
README.md
ROCKSDB_LITE.md
src.mk Refactored common code of Builder/CompactionJob out into a CompactionIterator 2015-09-10 14:35:25 -07:00
thirdparty.inc
USERS.md Add Cloudera's blog post to USERS.md 2015-09-02 14:04:51 -07:00
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/