Find a file
2018-05-25 16:27:17 +02:00
buckifier
build_tools Pass -latomic to linker when using clang 2018-04-25 12:13:41 -07:00
cache refactor constructor of LRUCacheShard 2018-05-23 18:57:42 -07:00
cmake Search paths provided by intel's "tbbvars.sh". 2018-05-07 14:28:36 -07:00
coverage
db Specify the underlying type of enums. 2018-05-23 16:12:59 -07:00
docs
env Apply use_direct_io_for_flush_and_compaction to writes only 2018-05-09 19:42:58 -07:00
examples
hdfs
include/rocksdb Introduce library-independent default compression level 2018-05-23 18:42:08 -07:00
java Fix an issue with unnecessary capture in lambda expressions 2018-05-25 16:27:17 +02:00
memtable Reorder field based on esan data 2018-05-17 17:57:48 -07:00
monitoring Print histogram count and sum in statistics string 2018-05-21 11:12:47 -07:00
options PersistRocksDBOptions() to use WritableFileWriter 2018-05-21 16:42:22 -07:00
port Better destroydb 2018-05-03 16:13:09 -07:00
table Fix a backward compatibility problem with table_properties being nullptr 2018-05-22 13:57:17 -07:00
third-party
tools Avoid single-deleting merge operands in db_stress 2018-05-22 10:58:36 -07:00
util Introduce library-independent default compression level 2018-05-23 18:42:08 -07:00
utilities Move prefix_extractor to MutableCFOptions 2018-05-21 14:43:11 -07:00
.clang-format
.gitignore
.travis.yml
appveyor.yml
AUTHORS
CMakeLists.txt Change and clarify the relationship between Valid(), status() and Seek*() for all iterators. Also fix some bugs 2018-05-17 02:56:56 -07:00
CODE_OF_CONDUCT.md
CONTRIBUTING.md
COPYING
DEFAULT_OPTIONS_HISTORY.md
DUMP_FORMAT.md
HISTORY.md Introduce library-independent default compression level 2018-05-23 18:42:08 -07:00
INSTALL.md
issue_template.md
LANGUAGE-BINDINGS.md
LICENSE.Apache
LICENSE.leveldb
Makefile Change and clarify the relationship between Valid(), status() and Seek*() for all iterators. Also fix some bugs 2018-05-17 02:56:56 -07:00
README.md
ROCKSDB_LITE.md
src.mk Add missing test files to src.mk 2018-05-21 09:43:29 -07:00
TARGETS Change and clarify the relationship between Valid(), status() and Seek*() for all iterators. Also fix some bugs 2018-05-17 02:56:56 -07:00
thirdparty.inc
USERS.md
Vagrantfile
WINDOWS_PORT.md

RocksDB: A Persistent Key-Value Store for Flash and RAM Storage

Linux/Mac Build Status Windows Build status PPC64le 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/

License

RocksDB is dual-licensed under both the GPLv2 (found in the COPYING file in the root directory) and Apache 2.0 License (found in the LICENSE.Apache file in the root directory). You may select, at your option, one of the above-listed licenses.