Enum rocksdb::MemtableFactory [−][src]
pub enum MemtableFactory {
    Vector,
    HashSkipList {
        bucket_count: usize,
        height: i32,
        branching_factor: i32,
    },
    HashLinkList {
        bucket_count: usize,
    },
}Defines the underlying memtable implementation. See official wiki for more information.
Variants
Show fields
Fields of HashLinkList
bucket_count: usize