Table of Contents

Enum BlobGarbageCollectionPolicy

Namespace
RocksDbNet
Assembly
RocksDb.Net.dll

Whether a manual compaction should collect blob-file garbage.

public enum BlobGarbageCollectionPolicy

Fields

Disable = 1

Skip blob-file garbage collection regardless of the column family setting.

Force = 0

Collect blob-file garbage regardless of the column family setting.

UseDefault = 2

Follow 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.