GitXplorerGitXplorer
f

rocksdb

public
28986 stars
6383 forks
1092 issues

Commits

List of commits on branch main.
Unverified
1076caf5ebb6cc3e6c35cc1fce7bcc1d2c253c03

Mark secondary indices experimental, add release note (#13298)

lltamasi committed 3 days ago
Unverified
f9791d44d0fc1518864d924d35b1d115520d6212

Introduce CancelAwaitingJobs() API in CompactionService (#13286)

jjaykorean committed 3 days ago
Unverified
5938ad270bdae02333a745054ef30aa3cf6dbfc9

Add support for Delete/SingleDelete with secondary indices (#13291)

lltamasi committed 3 days ago
Unverified
8bccd39bfdf8a09b916669016b10c5ad32ea0192

Add support for Put with secondary indices (#13289)

lltamasi committed 4 days ago
Unverified
6e97a813dc8c4b574fa0743df3099b09e87af7e0

Deprecate db delete file public API (#13284)

mmszeszko-meta committed 7 days ago
Unverified
541761eaaac81c09f2de1325142b1d130fdd689c

Deprecate random access max buffer size references - take #2 (#13288)

mmszeszko-meta committed 7 days ago

README

The README file for this repository.

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.