Table of Contents

Class BlobFileAdditionInfo

Namespace
RocksDbNet
Assembly
RocksDb.Net.dll

A blob file created by a flush or compaction. Maps to rocksdb_blob_file_addition_info_t.

public sealed record BlobFileAdditionInfo : IEquatable<BlobFileAdditionInfo>
Inheritance
BlobFileAdditionInfo
Implements
Inherited Members

Properties

BlobFileNumber

The blob file number.

public ulong BlobFileNumber { get; init; }

Property Value

ulong

BlobFilePath

Path of the blob file.

public string? BlobFilePath { get; init; }

Property Value

string

TotalBlobBytes

Total size of the blobs written, in bytes.

public ulong TotalBlobBytes { get; init; }

Property Value

ulong

TotalBlobCount

Number of blobs written to the file.

public ulong TotalBlobCount { get; init; }

Property Value

ulong