53 releases

0.22.0 Feb 13, 2024
0.21.0 May 9, 2023
0.20.1 Feb 10, 2023
0.19.0 Aug 5, 2022
0.0.1 Nov 29, 2014

#15 in Database interfaces

Download history 132680/week @ 2023-12-07 119126/week @ 2023-12-14 69470/week @ 2023-12-21 68249/week @ 2023-12-28 123534/week @ 2024-01-04 129482/week @ 2024-01-11 147300/week @ 2024-01-18 128055/week @ 2024-01-25 126605/week @ 2024-02-01 139958/week @ 2024-02-08 137346/week @ 2024-02-15 151706/week @ 2024-02-22 147272/week @ 2024-02-29 131351/week @ 2024-03-07 137561/week @ 2024-03-14 124757/week @ 2024-03-21

569,563 downloads per month
Used in 499 crates (198 directly)

Apache-2.0

23MB
478K SLoC

C++ 297K SLoC // 0.1% comments C 92K SLoC // 0.2% comments Java 34K SLoC // 0.3% comments Visual Studio Project 22K SLoC Rust 9K SLoC // 0.1% comments Python 9K SLoC // 0.1% comments Shell 5.5K SLoC // 0.2% comments GNU Style Assembly 2K SLoC // 0.3% comments Ada 1.5K SLoC // 0.2% comments Assembly 1.5K SLoC // 0.2% comments Pascal 1K SLoC // 0.2% comments Visual Studio Solution 1K SLoC C# 878 SLoC // 0.4% comments Bitbake 694 SLoC // 0.1% comments INI 432 SLoC // 0.1% comments PowerShell 369 SLoC // 0.2% comments JavaScript 94 SLoC // 0.1% comments Batch 86 SLoC Bazel 40 SLoC // 0.1% comments Automake 33 SLoC ReScript 3 SLoC

rust-rocksdb

RocksDB build crates.io documentation license Gitter chat rust 1.66.0 required

GitHub commits (since latest release)

Requirements

  • Clang and LLVM

Contributing

Feedback and pull requests welcome! If a particular feature of RocksDB is important to you, please let me know by opening an issue, and I'll prioritize it.

Usage

This binding is statically linked with a specific version of RocksDB. If you want to build it yourself, make sure you've also cloned the RocksDB and compression submodules:

git submodule update --init --recursive

Compression Support

By default, support for the Snappy, LZ4, Zstd, Zlib, and Bzip2 compression is enabled through crate features. If support for all of these compression algorithms is not needed, default features can be disabled and specific compression algorithms can be enabled. For example, to enable only LZ4 compression support, make these changes to your Cargo.toml:

[dependencies.rocksdb]
default-features = false
features = ["lz4"]

Multithreaded ColumnFamily alternation

The underlying RocksDB does allow column families to be created and dropped from multiple threads concurrently. But this crate doesn't allow it by default for compatibility. If you need to modify column families concurrently, enable crate feature called multi-threaded-cf, which makes this binding's data structures to use RwLock by default. Alternatively, you can directly create DBWithThreadMode<MultiThreaded> without enabling the crate feature.

Dependencies

~0.3–5MB
~84K SLoC