ghaladb 0.1.4

LSM tree based key value store with keys and values separation.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
macro_rules! t {
    ($id:expr, $expr:expr $(,)?) => {
        match $expr {
            Ok(val) => {
                trace!("{} ok.", $id);
                Ok(val)
            }
            Err(err) => {
                error!("{} failed. Reason: {err:?}", $id);
                Err(err)
            }
        }
    };
}

pub(crate) use t;