Enum FileType
- Namespace
- RocksDbNet
- Assembly
- RocksDb.Net.dll
The kinds of file RocksDb manages inside a database directory.
public enum FileType
Fields
BlobFile = 10A blob file holding values stored outside the SST files.
CompactionProgressFile = 11A file recording compaction progress.
CurrentFile = 4The CURRENT file naming the live manifest.
DbLockFile = 1The legacy lock file.
DescriptorFile = 3A manifest describing the current set of files.
IdentityFile = 8The IDENTITY file holding the database's unique identifier.
InfoLogFile = 6An informational log file, meaning RocksDb's own LOG output.
MetaDatabase = 7A metadata database.
OptionsFile = 9An OPTIONS file recording the options the database was opened with.
TableFile = 2An SST table file.
TempFile = 5A temporary file being written before being renamed into place.
WalFile = 0A write-ahead log file.
Remarks
Mirrored from include/rocksdb/types.h because the C API declares these
parameters as a plain int.