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

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.