dharmadb 0.1.1

Persistent, fault tolerant key-value store written in Rust.
Documentation
1
2
3
4
5
6
7
pub mod basic;

/// Specifies the compaction strategy used to compact SSTables.
pub enum CompactionStrategy {
    /// Represents Basic compaction Strategy. See `BasicCompaction` for more details.
    BASIC,
}