You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
jsteemann 90f744941d adds missing PopSavePoint method to Transaction (#4256) 7 years ago
buckifier Remove two CI tests (#4110) 7 years ago
build_tools Update FB internal dependencies (#4244) 7 years ago
cache Support group commits of version edits (#3944) 7 years ago
cmake Search paths provided by intel's "tbbvars.sh". 7 years ago
coverage Remove unused imports, from python scripts. (#4057) 7 years ago
db VerifyChecksum() API should preserve options 7 years ago
docs Advisor: README and blog, and also tests for DBBenchRunner, DatabaseOptions (#4201) 7 years ago
env Fix the build failure with OS_ANDROID (#4232) 7 years ago
examples Pin top-level index on partitioned index/filter blocks (#4037) 7 years ago
hdfs
include/rocksdb adds missing PopSavePoint method to Transaction (#4256) 7 years ago
java Add CompactRangeOptions for Java (#4220) 7 years ago
memtable Remove tests from ROCKSDB_VALGRIND_RUN 7 years ago
monitoring Support group commits of version edits (#3944) 7 years ago
options Improve point-lookup performance using a data block hash index (#4174) 7 years ago
port Implement Env::NumFileLinks (#4221) 7 years ago
table #3865 followup for fix performance degression introduced by switching order of operands (#4284) 7 years ago
third-party Add GCC 8 to Travis (#3433) 7 years ago
tools Add db_bench options of data block hash index (#4281) 7 years ago
util Improve point-lookup performance using a data block hash index (#4174) 7 years ago
utilities adds missing PopSavePoint method to Transaction (#4256) 7 years ago
.clang-format
.gitignore RocksDB Trace Analyzer (#4091) 7 years ago
.lgtm.yml Create lgtm.yml for LGTM.com C/C++ analysis (#4058) 7 years ago
.travis.yml Add GCC 8 to Travis (#3433) 7 years ago
AUTHORS
CMakeLists.txt Improve point-lookup performance using a data block hash index (#4174) 7 years ago
CODE_OF_CONDUCT.md
CONTRIBUTING.md
COPYING
DEFAULT_OPTIONS_HISTORY.md
DUMP_FORMAT.md
HISTORY.md GetAllKeyVersions() to take an extra argument of `max_num_ikeys`. (#4271) 7 years ago
INSTALL.md Enable compilation on OpenBSD 7 years ago
LANGUAGE-BINDINGS.md Added PingCaps Rust RocksDB and ObjectiveRocks (#4065) 7 years ago
LICENSE.Apache
LICENSE.leveldb
Makefile RocksDB Trace Analyzer (#4091) 7 years ago
README.md Create lgtm.yml for LGTM.com C/C++ analysis (#4058) 7 years ago
ROCKSDB_LITE.md Fix some typos in comments and docs. 7 years ago
TARGETS Improve point-lookup performance using a data block hash index (#4174) 7 years ago
USERS.md Support range deletion tombstones in IngestExternalFile SSTs (#3778) 7 years ago
Vagrantfile
WINDOWS_PORT.md Add GCC 8 to Travis (#3433) 7 years ago
appveyor.yml
issue_template.md
src.mk Add CompactRangeOptions for Java (#4220) 7 years ago
thirdparty.inc Provide a way to override windows memory allocator with jemalloc for ZSTD 7 years ago

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