Find a file
Islam AbdelRahman e89e5b253c Merge pull request #818 from yuslepukhin/improve_test_concurrency
Improve concurrency when running tests
2015-11-05 17:21:34 -08:00
arcanist_util Don't spew warnings when flint doesn't exist 2015-10-19 18:47:59 -07:00
build_tools Improve concurrency when running tests 2015-11-05 14:03:41 -08:00
coverage
db Fix regression failure in PrefixTest.PrefixValid 2015-11-05 16:43:54 -08:00
doc
examples
hdfs
include/rocksdb Prefix-based iterating only shows keys in prefix 2015-11-05 13:24:05 -08:00
java options: add recycle_log_file_num option 2015-10-18 21:21:24 -04:00
memtable Moving memtable related files from util to a new directory memtable 2015-10-16 14:10:33 -07:00
port "make format" in some recent commits 2015-10-29 17:11:14 -07:00
table Merge pull request #803 from SherlockNoMad/SkipFlush 2015-11-02 14:56:11 -08:00
third-party
tools Move skip_table_builder_flush to BlockBasedTableOption 2015-10-30 18:33:01 -07:00
util Prefix-based iterating only shows keys in prefix 2015-11-05 13:24:05 -08:00
utilities Delete test iterators 2015-11-05 13:30:51 -08:00
.arcconfig
.clang-format
.gitignore
.travis.yml
appveyor.yml Do not build test only code and unit tests in Release builds 2015-10-20 13:35:08 -07:00
appveyordailytests.yml Do not build test only code and unit tests in Release builds 2015-10-20 13:35:08 -07:00
AUTHORS
CMakeLists.txt Add OptionsSanityCheckLevel 2015-11-04 18:53:30 -08:00
CONTRIBUTING.md
DUMP_FORMAT.md
HISTORY.md Update HISTORY.md 2015-11-04 23:52:09 -08:00
INSTALL.md
LICENSE
Makefile Add Memory Insight support to utilities 2015-11-03 17:52:17 -08:00
PATENTS
README.md
ROCKSDB_LITE.md
src.mk Add OptionsSanityCheckLevel 2015-11-04 18:53:30 -08:00
thirdparty.inc
USERS.md
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/