#vec #disk #data

brk_vec

A very small, fast, efficient and simple storable Vec

11 releases

Uses new Rust 2024

new 0.0.12 Apr 2, 2025
0.0.11 Mar 31, 2025
0.0.2 Feb 27, 2025

#1462 in Database interfaces

Download history 369/week @ 2025-02-26 317/week @ 2025-03-05 140/week @ 2025-03-12 132/week @ 2025-03-19 75/week @ 2025-03-26

789 downloads per month
Used in 6 crates (4 directly)

MIT license

45KB
1.5K SLoC

BRK Vec

GitHub Repo stars kibo.money License Version Documentation Size Dependency status Chat

A Vec (an array) that is stored on disk and thus which can be much larger than the available RAM.

Compared to a key/value store, the data stored is raw byte interpretation of the Vec's values without any overhead which is very efficient. Additionally it uses close to no RAM when caching isn't active and up to 100 MB when it is.

Compression is also available and built on top zstd to save even more space (from 0 to 75%). The tradeoff being slower reading speeds, especially random reading speeds. This is due to the data being stored in compressed pages of 16 KB, which means that if you to read even one value in that page you have to uncompress the whole page.

Disclaimer

Portability will depend on the type of values.

Non bytes/slices types (u8, u16, ...) will be read as slice in an unsafe manner (using std::slice::from_raw_parts) and thus have the endianness of the system. On the other hand, &[u8] should be inserted as is.

If portability is important to you, just create a wrapper struct which has custom get, push, ... methods and does something like:

impl StorableVecU64 {
    pub fn push(&mut self, value: u64) {
        self.push(&value.to_be_bytes())
    }
}

Dependencies

~7MB
~124K SLoC