Alexander Fenster b73fbbaf64 added --no_value option to ldb scan to dump key only 9 years ago
arcanist_util Don't spew warnings when flint doesn't exist 10 years ago
build_tools Enhance db_bench write rate limit 9 years ago
coverage
db Optimize GetLatestSequenceForKey 9 years ago
doc Lint everything 9 years ago
examples Fix examples 9 years ago
hdfs update posix env schedule call 9 years ago
include/rocksdb Prevent the user from setting block_restart_interval to less than 1 9 years ago
java Fix java test buid broken by 7d87f02799 9 years ago
memtable Enable MS compiler warning c4244. 9 years ago
port Fix failing assertion in logger on Windows when the disk is full. 9 years ago
table Merge pull request #923 from petermattis/pmattis/prefix-may-match 9 years ago
third-party Enable MS compiler warning c4244. 9 years ago
tools added --no_value option to ldb scan to dump key only 9 years ago
util Fix DynamicBloomTest.concurrent_with_perf to pass TSAN 9 years ago
utilities Fix issue #921 9 years ago
.arcconfig
.clang-format
.gitignore
.travis.yml Run ROCKSDB_LITE tests in travis 10 years ago
AUTHORS
CMakeLists.txt Disable Visual Studio Warning C4351 9 years ago
CONTRIBUTING.md
DUMP_FORMAT.md
HISTORY.md Make ldb automagically determine the file type and use the correct dumping function 9 years ago
INSTALL.md Update 4 is required for building with MS Visual Studio 13 10 years ago
LICENSE
Makefile Fix clang build 9 years ago
PATENTS
README.md
ROCKSDB_LITE.md
USERS.md Add Airbnb and Pinterest to USERS.md 9 years ago
Vagrantfile
WINDOWS_PORT.md
appveyor.yml Exclude DBTest.FileCreationRandomFailure as a long running test 9 years ago
src.mk support for concurrent adds to memtable 9 years ago
thirdparty.inc Enable override to 3rd party linkage 9 years ago

README.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/