Enum CacheTier
- Namespace
- RocksDbNet
- Assembly
- RocksDb.Net.dll
The tiers of cache a read is permitted to reach into.
public enum CacheTier
Fields
NonVolatileBlock = 2Any tier, including a non-volatile secondary cache backed by storage.
Volatile = 0Only the in-memory block cache.
VolatileCompressed = 1The 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.