flower_linux ba429a0e08 windows编译 4 mesi fa
..
.github ba429a0e08 windows编译 4 mesi fa
buckifier ba429a0e08 windows编译 4 mesi fa
build_tools ba429a0e08 windows编译 4 mesi fa
cache ba429a0e08 windows编译 4 mesi fa
cmake ba429a0e08 windows编译 4 mesi fa
coverage ba429a0e08 windows编译 4 mesi fa
db ba429a0e08 windows编译 4 mesi fa
db_stress_tool ba429a0e08 windows编译 4 mesi fa
docs ba429a0e08 windows编译 4 mesi fa
env ba429a0e08 windows编译 4 mesi fa
examples ba429a0e08 windows编译 4 mesi fa
file ba429a0e08 windows编译 4 mesi fa
fuzz ba429a0e08 windows编译 4 mesi fa
include ba429a0e08 windows编译 4 mesi fa
java ba429a0e08 windows编译 4 mesi fa
logging ba429a0e08 windows编译 4 mesi fa
memory ba429a0e08 windows编译 4 mesi fa
memtable ba429a0e08 windows编译 4 mesi fa
microbench ba429a0e08 windows编译 4 mesi fa
monitoring ba429a0e08 windows编译 4 mesi fa
options ba429a0e08 windows编译 4 mesi fa
plugin ba429a0e08 windows编译 4 mesi fa
port ba429a0e08 windows编译 4 mesi fa
table ba429a0e08 windows编译 4 mesi fa
test_util ba429a0e08 windows编译 4 mesi fa
third-party ba429a0e08 windows编译 4 mesi fa
tools ba429a0e08 windows编译 4 mesi fa
trace_replay ba429a0e08 windows编译 4 mesi fa
unreleased_history ba429a0e08 windows编译 4 mesi fa
util ba429a0e08 windows编译 4 mesi fa
utilities ba429a0e08 windows编译 4 mesi fa
.clang-format 108401a0a4 初始化提交 6 mesi fa
.gitignore ba429a0e08 windows编译 4 mesi fa
.lgtm.yml 108401a0a4 初始化提交 6 mesi fa
AUTHORS 108401a0a4 初始化提交 6 mesi fa
BUCK ba429a0e08 windows编译 4 mesi fa
CMakeLists.txt ba429a0e08 windows编译 4 mesi fa
CODE_OF_CONDUCT.md 108401a0a4 初始化提交 6 mesi fa
CONTRIBUTING.md 108401a0a4 初始化提交 6 mesi fa
COPYING 108401a0a4 初始化提交 6 mesi fa
DEFAULT_OPTIONS_HISTORY.md ba429a0e08 windows编译 4 mesi fa
DUMP_FORMAT.md 108401a0a4 初始化提交 6 mesi fa
Directory.Build.props ba429a0e08 windows编译 4 mesi fa
HISTORY.md ba429a0e08 windows编译 4 mesi fa
INSTALL.md ba429a0e08 windows编译 4 mesi fa
LANGUAGE-BINDINGS.md ba429a0e08 windows编译 4 mesi fa
LICENSE.Apache 108401a0a4 初始化提交 6 mesi fa
LICENSE.leveldb 108401a0a4 初始化提交 6 mesi fa
Makefile 19381eecbc rocksdb 5 mesi fa
PLUGINS.md ba429a0e08 windows编译 4 mesi fa
README.md ba429a0e08 windows编译 4 mesi fa
USERS.md ba429a0e08 windows编译 4 mesi fa
Vagrantfile 108401a0a4 初始化提交 6 mesi fa
WINDOWS_PORT.md ba429a0e08 windows编译 4 mesi fa
ccache_msvc_compiler.bat ba429a0e08 windows编译 4 mesi fa
common.mk ba429a0e08 windows编译 4 mesi fa
crash_test.mk ba429a0e08 windows编译 4 mesi fa
issue_template.md 108401a0a4 初始化提交 6 mesi fa
rocksdb.pc.in ba429a0e08 windows编译 4 mesi fa
src.mk ba429a0e08 windows编译 4 mesi fa
thirdparty.inc 108401a0a4 初始化提交 6 mesi fa

README.md

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

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