Table of Contents

Enum CacheTier

Namespace
RocksDbNet
Assembly
RocksDb.Net.dll

The tiers of cache a read is permitted to reach into.

public enum CacheTier

Fields

NonVolatileBlock = 2

Any tier, including a non-volatile secondary cache backed by storage.

Volatile = 0

Only the in-memory block cache.

VolatileCompressed = 1

The in-memory block cache, including its compressed portion.

Remarks

Mirrored from include/rocksdb/advanced_options.h because the C API declares this parameter as a plain int.