rsdb 0.12.1

a flash-sympathetic persistent lock-free B+ tree, pagecache, and log
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#![allow(dead_code)]

mod keyhash;
mod crc16;
mod crc64;

// used for fast lookups
pub use self::keyhash::hash;

// used for protecting large snapshot files
pub use self::crc64::crc64;

// used for protecting individual log entries
pub use self::crc16::{crc16, crc16_arr};