Enum rocksdb::MemtableFactory
source · pub enum MemtableFactory {
Vector,
HashSkipList {
bucket_count: usize,
height: i32,
branching_factor: i32,
},
HashLinkList {
bucket_count: usize,
},
}
Expand description
Defines the underlying memtable implementation. See official wiki for more information.