Go to file
Radek Hubner 054c00e92d Fix typo in CMakeList. (#12247)
Summary:
Fix https://github.com/facebook/rocksdb/issues/12237

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

Reviewed By: pdillinger

Differential Revision: D53066154

Pulled By: ajkr

fbshipit-source-id: 0a86c2f3e6cc28f3f52af33d4414ae06b03e3bf1
2024-01-25 12:35:27 -08:00
.circleci Use the correct Docker Image for RocksJava on Linux (#12169) 2024-01-19 10:12:31 -08:00
.github Use the correct Docker Image for RocksJava on Linux (#12169) 2024-01-19 10:12:31 -08:00
buckifier
build_tools
cache
cmake Fix typo in CMakeList. (#12247) 2024-01-25 12:35:27 -08:00
coverage
db Rate-limit un-ratelimited flush/compaction code paths (#12290) 2024-01-25 12:00:15 -08:00
db_stress_tool No consistency check when compaction filter is enabled in stress test (#12291) 2024-01-25 09:58:25 -08:00
docs
env Remove extra semi colon from internal_repo_rocksdb/repo/env/env_encryption.cc (#12274) 2024-01-24 07:22:49 -08:00
examples
file
fuzz
include/rocksdb Add some missing status checks in SstFileWriter (#12281) 2024-01-25 10:44:00 -08:00
java
logging
memory
memtable
microbench
monitoring Remove extra semi colon from internal_repo_rocksdb/repo/monitoring/histogram.h 2024-01-23 08:42:15 -08:00
options
plugin
port Remove extra semi colon from internal_repo_rocksdb/repo/port/lang.h 2024-01-23 09:41:29 -08:00
table Add some missing status checks in SstFileWriter (#12281) 2024-01-25 10:44:00 -08:00
test_util
third-party
tools Enhance ldb_cmd_tool to enable user pass in customized cfds (#12261) 2024-01-24 16:16:18 -08:00
trace_replay
unreleased_history Fix bug of newer ingested data assigned with an older seqno (#12257) 2024-01-24 11:21:05 -08:00
util Remove extra semi colon from internal_repo_rocksdb/repo/util/ribbon_impl.h (#12269) 2024-01-24 08:20:50 -08:00
utilities Remove extra semi colon from internal_repo_rocksdb/repo/utilities/env_mirror.cc (#12271) 2024-01-24 07:37:31 -08:00
.clang-format
.gitignore
.lgtm.yml
.watchmanconfig
AUTHORS
CMakeLists.txt Fix typo in CMakeList. (#12247) 2024-01-25 12:35:27 -08:00
CODE_OF_CONDUCT.md
CONTRIBUTING.md
COPYING
DEFAULT_OPTIONS_HISTORY.md
DUMP_FORMAT.md
HISTORY.md Add 8.11 release note for FileOperationType enum addition (#12263) 2024-01-22 12:43:44 -08:00
INSTALL.md
LANGUAGE-BINDINGS.md
LICENSE.Apache
LICENSE.leveldb
Makefile
PLUGINS.md
README.md
TARGETS
USERS.md
Vagrantfile
WINDOWS_PORT.md
common.mk
crash_test.mk
issue_template.md
rocksdb.pc.in
src.mk
thirdparty.inc

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.