bitcasky 0.1.2

Bitcasky is a Rust implementation of the Bitcask key-value store
Documentation
1
2
3
4
5
pub const TOMBSTONE_VALUE: &str = "bitcask_tombstone";

pub fn is_tombstone(val: &[u8]) -> bool {
    val.eq(TOMBSTONE_VALUE.as_bytes())
}