quick-kv 1.0.0

A reliable key-value storage for modern software
Documentation
1
2
3
4
5
6
7
8
9
10
11
use rustc_hash::{FxHashMap, FxHashSet};

// Type aliases for the Hashing. This is to make it easier to change the hashing algorithm in the future
// as we don't need cryptographic security in our offline db.

// For HashMap
pub type HashMap<K, V> = FxHashMap<K, V>;

// For HashSet
#[allow(dead_code)]
pub type HashSet<V> = FxHashSet<V>;