Enum rocksdb::BlockBasedIndexType[][src]

pub enum BlockBasedIndexType {
    BinarySearch,
    HashSearch,
    TwoLevelIndexSearch,
}

Used by BlockBasedOptions::set_index_type.

Variants

A space efficient index block that is optimized for binary-search-based index.

The hash index, if enabled, will perform a hash lookup if a prefix extractor has been provided through Options::set_prefix_extractor.

A two-level index implementation. Both levels are binary search indexes.

Auto Trait Implementations