Enum WriteBatchEntryKind
- Namespace
- RocksDbNet
- Assembly
- RocksDb.Net.dll
What kind of operation a WriteBatchEntry records.
public enum WriteBatchEntryKind
Fields
Delete = 1A key was deleted.
LogData = 3An application blob written with PutLogData(ReadOnlySpan<byte>). It is carried in the write-ahead log but never stored against a key.
Merge = 2A merge operand was queued for a key.
Put = 0A key was written.