Find a file
Bo Wang c073ed7601 Fix typo in comments and code (#10233)
Summary:
Fix typo in comments and code.

Pull Request resolved: https://github.com/facebook/rocksdb/pull/10233

Test Plan: Existing unit tests should pass.

Reviewed By: jay-zhuang, anand1976

Differential Revision: D37356702

Pulled By: gitbw95

fbshipit-source-id: 32c019adcc6dcc95a9882b38147a310091368e51
2022-06-22 15:45:21 -07:00
.circleci Adapt benchmark result script to new fields. (#10120) 2022-06-22 09:26:13 -07:00
.github/workflows
buckifier
build_tools Adapt benchmark result script to new fields. (#10120) 2022-06-22 09:26:13 -07:00
cache Replace per-shard chained hash tables with open-addressing scheme (#10194) 2022-06-21 08:45:04 -07:00
cmake
coverage
db Fix typo in comments and code (#10233) 2022-06-22 15:45:21 -07:00
db_stress_tool Add data block hash index to crash test, fix MultiGet issue (#10220) 2022-06-21 16:23:58 -07:00
docs
env Fix typo in comments and code (#10233) 2022-06-22 15:45:21 -07:00
examples
file Fix typo in comments and code (#10233) 2022-06-22 15:45:21 -07:00
fuzz
include/rocksdb Fix typo in comments and code (#10233) 2022-06-22 15:45:21 -07:00
java
logging
memory
memtable
microbench
monitoring
options Add basic kRoundRobin compaction policy (#10107) 2022-06-21 11:56:53 -07:00
plugin
port Fix typo in comments and code (#10233) 2022-06-22 15:45:21 -07:00
table Fix typo in comments and code (#10233) 2022-06-22 15:45:21 -07:00
test_util
third-party
tools Add data block hash index to crash test, fix MultiGet issue (#10220) 2022-06-21 16:23:58 -07:00
trace_replay
util Fix typo in comments and code (#10233) 2022-06-22 15:45:21 -07:00
utilities Expose the initial logger creation error (#10223) 2022-06-22 08:26:38 -07:00
.clang-format
.gitignore
.lgtm.yml
.travis.yml
.watchmanconfig
AUTHORS
CMakeLists.txt
CODE_OF_CONDUCT.md
common.mk
CONTRIBUTING.md
COPYING
crash_test.mk
DEFAULT_OPTIONS_HISTORY.md
DUMP_FORMAT.md
HISTORY.md Add get_column_family_metadata() and related functions to C API (#10207) 2022-06-22 15:00:28 -07:00
INSTALL.md
issue_template.md
LANGUAGE-BINDINGS.md
LICENSE.Apache
LICENSE.leveldb
Makefile
PLUGINS.md
README.md
rocksdb.pc.in
ROCKSDB_LITE.md
src.mk
TARGETS
thirdparty.inc
USERS.md
Vagrantfile
WINDOWS_PORT.md

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

CircleCI Status TravisCI Status Appveyor 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/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.