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

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.