Jay Zhuang 69a18b9bad VerifySstUniqueIds status is overrided for multi CFs (#10247) 3 years ago
.circleci Adapt benchmark result script to new fields. (#10120) 3 years ago
.github/workflows Use released clang-format instead of the one from dev branch (#9646) 3 years ago
buckifier Use optimized folly DistributedMutex in LRUCache when available (#10179) 3 years ago
build_tools Adapt benchmark result script to new fields. (#10120) 3 years ago
cache Add lean option to cache_bench (#10363) 3 years ago
cmake
coverage Fix commit_prereq and other targets (#9797) 3 years ago
db VerifySstUniqueIds status is overrided for multi CFs (#10247) 3 years ago
db_stress_tool Revert NewClockCache signature (#10358) 3 years ago
docs Bump nokogiri from 1.13.4 to 1.13.6 in /docs (#10019) 3 years ago
env Support reservation in thread pool (#10278) 3 years ago
examples Add a simple example of backup and restore (#10054) 3 years ago
file Provide support for direct_reads with async_io (#10197) 3 years ago
fuzz Fix compilation errors and add fuzzers to CircleCI (#9420) 3 years ago
include/rocksdb DB::PutEntity() shouldn't be defined as =0 (#10364) 3 years ago
java Revert NewClockCache signature (#10358) 3 years ago
logging Fix bug in Logger creation if dbname and db_log_dir are on different filesystem (#10292) 3 years ago
memory Fail DB::Open() if logger cannot be created (#9984) 3 years ago
memtable Rewrite memory-charging feature's option API (#9926) 3 years ago
microbench Fix overflow in ribbon_bench after #10184 (#10195) 3 years ago
monitoring Add seqno to time mapping (#10338) 3 years ago
options Add seqno to time mapping (#10338) 3 years ago
plugin
port Support reservation in thread pool (#10278) 3 years ago
table Add seqno to time mapping (#10338) 3 years ago
test_util Add seqno to time mapping (#10338) 3 years ago
third-party Meta-internal folly integration with F14FastMap (#9546) 3 years ago
tools Temporarily return a LRUCache from NewClockCache (#10351) 3 years ago
trace_replay Use std::numeric_limits<> (#9954) 3 years ago
util Add seqno to time mapping (#10338) 3 years ago
utilities Have Cache use Status::MemoryLimit (#10262) 3 years ago
.clang-format
.gitignore Snapshots with user-specified timestamps (#9879) 3 years ago
.lgtm.yml
.travis.yml Fix remaining uses of "backupable" (#9792) 3 years ago
.watchmanconfig
AUTHORS
CMakeLists.txt Add seqno to time mapping (#10338) 3 years ago
CODE_OF_CONDUCT.md
CONTRIBUTING.md
COPYING
DEFAULT_OPTIONS_HISTORY.md
DUMP_FORMAT.md
HISTORY.md Add seqno to time mapping (#10338) 3 years ago
INSTALL.md Update supported VS versions in INSTALL.md (#9823) 3 years ago
LANGUAGE-BINDINGS.md
LICENSE.Apache
LICENSE.leveldb
Makefile Add seqno to time mapping (#10338) 3 years ago
PLUGINS.md Add pmem-rocksdb-plugin link in PLUGINs.md (#9934) 3 years ago
README.md
ROCKSDB_LITE.md Fix remaining uses of "backupable" (#9792) 3 years ago
TARGETS Add seqno to time mapping (#10338) 3 years ago
USERS.md Add Solana's RocksDB use case in USERS.md (#9558) 3 years ago
Vagrantfile
WINDOWS_PORT.md
common.mk Clean up variables for temporary directory (#9961) 3 years ago
crash_test.mk Clean up variables for temporary directory (#9961) 3 years ago
issue_template.md
rocksdb.pc.in build: fix pkg-config file generation (#9953) 3 years ago
src.mk Add seqno to time mapping (#10338) 3 years ago
thirdparty.inc

README.md

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

CircleCI Status TravisCI Status Appveyor 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 especially suitable for storing multiple terabytes of data in a single database.

Start with example usage here: https://github.com/facebook/rocksdb/tree/main/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.

Questions and discussions are welcome on the RocksDB Developers Public Facebook group and email list on Google Groups.

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.