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
BlobFilePath
Path of the blob file.
public string? BlobFilePath { get; init; }
Property Value
TotalBlobBytes
Total size of the blobs written, in bytes.
public ulong TotalBlobBytes { get; init; }
Property Value
TotalBlobCount
Number of blobs written to the file.
public ulong TotalBlobCount { get; init; }