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.
 
 
 
 
 
 
Gang Liao 0b6bc101ba Charge blob cache usage against the global memory limit (#10321) 3 years ago
.circleci Adapt benchmark result script to new fields. (#10120) 3 years ago
.github/workflows
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 Charge blob cache usage against the global memory limit (#10321) 3 years ago
cmake
coverage
db Charge blob cache usage against the global memory limit (#10321) 3 years ago
db_stress_tool Charge blob cache usage against the global memory limit (#10321) 3 years ago
docs Per kv checksum blogpost (#10385) 3 years ago
env Fix hang in MultiRead with O_DIRECT and io_uring (#10368) 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
include/rocksdb Charge blob cache usage against the global memory limit (#10321) 3 years ago
java Support prepopulating/warming the blob cache (#10298) 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 Make RateLimiter not Customizable (#10378) 3 years ago
plugin
port Support reservation in thread pool (#10278) 3 years ago
table Charge blob cache usage against the global memory limit (#10321) 3 years ago
test_util Add seqno to time mapping (#10338) 3 years ago
third-party
tools Charge blob cache usage against the global memory limit (#10321) 3 years ago
trace_replay
util Make RateLimiter not Customizable (#10378) 3 years ago
utilities Make RateLimiter not Customizable (#10378) 3 years ago
.clang-format
.gitignore Snapshots with user-specified timestamps (#9879) 3 years ago
.lgtm.yml
.travis.yml
.watchmanconfig
AUTHORS
CMakeLists.txt Charge blob cache usage against the global memory limit (#10321) 3 years ago
CODE_OF_CONDUCT.md
CONTRIBUTING.md
COPYING
DEFAULT_OPTIONS_HISTORY.md
DUMP_FORMAT.md
HISTORY.md Charge blob cache usage against the global memory limit (#10321) 3 years ago
INSTALL.md
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
TARGETS Charge blob cache usage against the global memory limit (#10321) 3 years ago
USERS.md
Vagrantfile
WINDOWS_PORT.md
common.mk
crash_test.mk
issue_template.md
rocksdb.pc.in build: fix pkg-config file generation (#9953) 3 years ago
src.mk Charge blob cache usage against the global memory limit (#10321) 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.