Find a file
Maysam Yabandeh 927bbab25c Revert "Add cpu usage to regression benchmarks (3rd attempt)"
Summary:
This reverts commit 476e80be80.
Closes https://github.com/facebook/rocksdb/pull/2177

Differential Revision: D4914830

Pulled By: maysamyabandeh

fbshipit-source-id: 039299348ceb325aa721eb35e3a26e890f84ee74
2017-04-19 11:11:12 -07:00
arcanist_util
buckifier internal_repo_rocksdb to build Java and RocksDB LITE 2017-04-12 15:13:41 -07:00
build_tools Change Build Env to gcc-5 2017-04-14 11:12:56 -07:00
cache
cmake/modules CMake: more MinGW fixes 2017-04-06 14:09:13 -07:00
coverage
db Hide event listeners from lite build 2017-04-18 17:26:19 -07:00
docs
env remove warning 2017-04-14 18:56:14 -07:00
examples CMake: more MinGW fixes 2017-04-06 14:09:13 -07:00
hdfs
include/rocksdb Add DB:ResetStats() 2017-04-18 16:56:48 -07:00
java change use_direct_writes to use_direct_io_for_flush_and_compaction 2017-04-13 16:12:04 -07:00
memtable Move memtable related files into memtable directory 2017-04-06 14:09:13 -07:00
monitoring Move various string utility functions into string_util 2017-04-06 14:54:12 -07:00
options Re-add index_per_partition but as deprecated 2017-04-18 20:35:46 -07:00
port
table readahead backwards from sst end 2017-04-14 18:56:14 -07:00
third-party
tools Revert "Add cpu usage to regression benchmarks (3rd attempt)" 2017-04-19 11:11:12 -07:00
util Blob storage helper methods 2017-04-18 12:42:38 -07:00
utilities Change Build Env to gcc-5 2017-04-14 11:12:56 -07:00
.clang-format
.deprecated_arcconfig Update ShipIt to honor TARGETS updates 2017-04-13 16:12:03 -07:00
.gitignore
.travis.yml Add Travis job to build examples 2017-04-07 10:39:15 -07:00
appveyor.yml
AUTHORS
CMakeLists.txt CMake: compile with -O2 2017-04-17 23:56:46 -07:00
CONTRIBUTING.md
DEFAULT_OPTIONS_HISTORY.md
DUMP_FORMAT.md
HISTORY.md Add DB:ResetStats() 2017-04-18 16:56:48 -07:00
INSTALL.md
LANGUAGE-BINDINGS.md
LICENSE
Makefile enable O2 optimization for lz4 2017-04-16 11:47:17 -07:00
PATENTS
README.md
ROCKSDB_LITE.md
src.mk Refactor compaction picker code 2017-04-06 20:09:34 -07:00
TARGETS sync TARGETS file 2017-04-11 18:17:47 -07: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/