Table of Contents

Enum DataBlockIndexType

Namespace
RocksDbNet
Assembly
RocksDb.Net.dll

Index type used inside a data block, which controls how a key is located once its block has been read.

public enum DataBlockIndexType

Fields

BinarySearch = 0

Binary search over the block's restart points.

BinarySearchAndHash = 1

Binary search plus a hash table, which makes point lookups faster at the cost of some space. See DataBlockHashTableUtilRatio.