Table of Contents

Enum WriteBatchEntryKind

Namespace
RocksDbNet
Assembly
RocksDb.Net.dll

What kind of operation a WriteBatchEntry records.

public enum WriteBatchEntryKind

Fields

Delete = 1

A key was deleted.

LogData = 3

An application blob written with PutLogData(ReadOnlySpan<byte>). It is carried in the write-ahead log but never stored against a key.

Merge = 2

A merge operand was queued for a key.

Put = 0

A key was written.