Find a file
Igor Canadi ba83447363 Merge pull request #923 from petermattis/pmattis/prefix-may-match
Fix index seeking in BlockTableReader::PrefixMayMatch.
2016-01-06 14:02:10 -08:00
arcanist_util
build_tools Enhance db_bench write rate limit 2016-01-04 12:01:27 -08:00
coverage
db Optimize GetLatestSequenceForKey 2016-01-06 13:43:22 -08:00
doc
examples
hdfs update posix env schedule call 2015-12-30 10:12:44 -08:00
include/rocksdb Prevent the user from setting block_restart_interval to less than 1 2016-01-04 14:13:18 -08:00
java
memtable
port Fix failing assertion in logger on Windows when the disk is full. 2016-01-05 13:35:14 +01:00
table Merge pull request #923 from petermattis/pmattis/prefix-may-match 2016-01-06 14:02:10 -08:00
third-party
tools Enhance db_bench write rate limit 2016-01-04 12:01:27 -08:00
util
utilities Fix issue #921 2016-01-06 13:05:24 -08:00
.arcconfig
.clang-format
.gitignore
.travis.yml
appveyor.yml
AUTHORS
CMakeLists.txt
CONTRIBUTING.md
DUMP_FORMAT.md
HISTORY.md
INSTALL.md
LICENSE
Makefile Fix clang build 2015-12-30 15:43:52 -08:00
PATENTS
README.md
ROCKSDB_LITE.md
src.mk
thirdparty.inc
USERS.md Add Airbnb and Pinterest to USERS.md 2016-01-04 11:44:55 -08: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/