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

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.