flower_linux bf09caa07d 数据库版本 3 days ago
..
.github bf09caa07d 数据库版本 3 days ago
buckifier bf09caa07d 数据库版本 3 days ago
build_tools bf09caa07d 数据库版本 3 days ago
cache bf09caa07d 数据库版本 3 days ago
cmake 108401a0a4 初始化提交 1 month ago
coverage 108401a0a4 初始化提交 1 month ago
db bf09caa07d 数据库版本 3 days ago
db_stress_tool bf09caa07d 数据库版本 3 days ago
docs bf09caa07d 数据库版本 3 days ago
env bf09caa07d 数据库版本 3 days ago
examples bf09caa07d 数据库版本 3 days ago
file bf09caa07d 数据库版本 3 days ago
fuzz bf09caa07d 数据库版本 3 days ago
hdfs 108401a0a4 初始化提交 1 month ago
include bf09caa07d 数据库版本 3 days ago
java bf09caa07d 数据库版本 3 days ago
logging 108401a0a4 初始化提交 1 month ago
memory bf09caa07d 数据库版本 3 days ago
memtable bf09caa07d 数据库版本 3 days ago
microbench bf09caa07d 数据库版本 3 days ago
monitoring bf09caa07d 数据库版本 3 days ago
options bf09caa07d 数据库版本 3 days ago
plugin bf09caa07d 数据库版本 3 days ago
port bf09caa07d 数据库版本 3 days ago
table bf09caa07d 数据库版本 3 days ago
test_util bf09caa07d 数据库版本 3 days ago
third-party bf09caa07d 数据库版本 3 days ago
tools bf09caa07d 数据库版本 3 days ago
trace_replay bf09caa07d 数据库版本 3 days ago
unreleased_history bf09caa07d 数据库版本 3 days ago
util bf09caa07d 数据库版本 3 days ago
utilities bf09caa07d 数据库版本 3 days ago
.clang-format 108401a0a4 初始化提交 1 month ago
.gitignore 108401a0a4 初始化提交 1 month ago
.lgtm.yml 108401a0a4 初始化提交 1 month ago
.travis.yml 108401a0a4 初始化提交 1 month ago
AUTHORS 108401a0a4 初始化提交 1 month ago
BUCK bf09caa07d 数据库版本 3 days ago
CMakeLists.txt 108401a0a4 初始化提交 1 month ago
CODE_OF_CONDUCT.md 108401a0a4 初始化提交 1 month ago
CONTRIBUTING.md 108401a0a4 初始化提交 1 month ago
COPYING 108401a0a4 初始化提交 1 month ago
DEFAULT_OPTIONS_HISTORY.md 108401a0a4 初始化提交 1 month ago
DUMP_FORMAT.md 108401a0a4 初始化提交 1 month ago
Directory.Build.props bf09caa07d 数据库版本 3 days ago
HISTORY.md 108401a0a4 初始化提交 1 month ago
INSTALL.md 108401a0a4 初始化提交 1 month ago
LANGUAGE-BINDINGS.md 108401a0a4 初始化提交 1 month ago
LICENSE.Apache 108401a0a4 初始化提交 1 month ago
LICENSE.leveldb 108401a0a4 初始化提交 1 month ago
PLUGINS.md bf09caa07d 数据库版本 3 days ago
README.md 108401a0a4 初始化提交 1 month ago
ROCKSDB_LITE.md 108401a0a4 初始化提交 1 month ago
TARGETS 108401a0a4 初始化提交 1 month ago
USERS.md 108401a0a4 初始化提交 1 month ago
Vagrantfile 108401a0a4 初始化提交 1 month ago
WINDOWS_PORT.md 108401a0a4 初始化提交 1 month ago
appveyor.yml 108401a0a4 初始化提交 1 month ago
ccache_msvc_compiler.bat bf09caa07d 数据库版本 3 days ago
common.mk bf09caa07d 数据库版本 3 days ago
crash_test.mk bf09caa07d 数据库版本 3 days ago
defs.bzl 108401a0a4 初始化提交 1 month ago
issue_template.md 108401a0a4 初始化提交 1 month ago
rocksdb.pc.in bf09caa07d 数据库版本 3 days ago
src.mk 108401a0a4 初始化提交 1 month ago
thirdparty.inc 108401a0a4 初始化提交 1 month 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 especially 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.