Enum BlobGarbageCollectionPolicy
- Namespace
- RocksDbNet
- Assembly
- RocksDb.Net.dll
Whether a manual compaction should collect blob-file garbage.
public enum BlobGarbageCollectionPolicy
Fields
Disable = 1Skip blob-file garbage collection regardless of the column family setting.
Force = 0Collect blob-file garbage regardless of the column family setting.
UseDefault = 2Follow the column family's own setting. This is the default.
Remarks
Mirrored from include/rocksdb/options.h because the C API declares
this parameter as a plain int.