#[non_exhaustive]
pub struct DatabaseConfig { pub max_open_files: i32, pub memory_budget: HashMap<u32, usize>, pub compaction: CompactionProfile, pub columns: u32, pub keep_log_file_num: i32, pub enable_statistics: bool, pub secondary: Option<PathBuf>, pub max_total_wal_size: Option<u64>, pub create_if_missing: bool, }
Expand description

Database configuration

Fields (Non-exhaustive)§

This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.
§max_open_files: i32

Max number of open files.

§memory_budget: HashMap<u32, usize>

Memory budget (in MiB) used for setting block cache size and write buffer size for each column including the default one. If the memory budget of a column is not specified, DB_DEFAULT_COLUMN_MEMORY_BUDGET_MB is used for that column.

§compaction: CompactionProfile

Compaction profile.

§columns: u32

Set number of columns.

Safety

The number of columns must not be zero.

§keep_log_file_num: i32

Specify the maximum number of info/debug log files to be kept.

§enable_statistics: bool

Enable native RocksDB statistics. Disabled by default.

It can have a negative performance impact up to 10% according to https://github.com/facebook/rocksdb/wiki/Statistics.

§secondary: Option<PathBuf>

Open the database as a secondary instance. Specify a path for the secondary instance of the database. Secondary instances are read-only and kept updated by tailing the rocksdb MANIFEST. It is up to the user to call catch_up_with_primary() manually to update the secondary db. Disabled by default.

max_open_files is overridden to always equal -1. May have a negative performance impact on the secondary instance if the secondary instance reads and applies state changes before the primary instance compacts them. More info: https://github.com/facebook/rocksdb/wiki/Secondary-instance

§max_total_wal_size: Option<u64>

Limit the size (in bytes) of write ahead logs More info: https://github.com/facebook/rocksdb/wiki/Write-Ahead-Log

§create_if_missing: bool

Creates a new database if no database exists. Set to true by default for backwards compatibility.

Implementations§

Create new DatabaseConfig with default parameters and specified set of columns. Note that cache sizes must be explicitly set.

Safety

The number of columns must not be zero.

Returns the total memory budget in bytes.

Trait Implementations§

Returns a copy of the value. Read more
Performs copy-assignment from source. Read more
Returns the “default value” for a type. Read more

Auto Trait Implementations§

Blanket Implementations§

Gets the TypeId of self. Read more
Immutably borrows from an owned value. Read more
Mutably borrows from an owned value. Read more
Converts self into T using Into<T>. Read more
Causes self to use its Binary implementation when Debug-formatted. Read more
Causes self to use its Display implementation when Debug-formatted. Read more
Causes self to use its LowerExp implementation when Debug-formatted. Read more
Causes self to use its LowerHex implementation when Debug-formatted. Read more
Causes self to use its Octal implementation when Debug-formatted. Read more
Causes self to use its Pointer implementation when Debug-formatted. Read more
Causes self to use its UpperExp implementation when Debug-formatted. Read more
Causes self to use its UpperHex implementation when Debug-formatted. Read more
Formats each item in a sequence. Read more

Returns the argument unchanged.

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Pipes by value. This is generally the method you want to use. Read more
Borrows self and passes that borrow into the pipe function. Read more
Mutably borrows self and passes that borrow into the pipe function. Read more
Borrows self, then passes self.borrow() into the pipe function. Read more
Mutably borrows self, then passes self.borrow_mut() into the pipe function. Read more
Borrows self, then passes self.as_ref() into the pipe function.
Mutably borrows self, then passes self.as_mut() into the pipe function. Read more
Borrows self, then passes self.deref() into the pipe function.
Mutably borrows self, then passes self.deref_mut() into the pipe function. Read more
Immutable access to a value. Read more
Mutable access to a value. Read more
Immutable access to the Borrow<B> of a value. Read more
Mutable access to the BorrowMut<B> of a value. Read more
Immutable access to the AsRef<R> view of a value. Read more
Mutable access to the AsMut<R> view of a value. Read more
Immutable access to the Deref::Target of a value. Read more
Mutable access to the Deref::Target of a value. Read more
Calls .tap() only in debug builds, and is erased in release builds.
Calls .tap_mut() only in debug builds, and is erased in release builds. Read more
Calls .tap_borrow() only in debug builds, and is erased in release builds. Read more
Calls .tap_borrow_mut() only in debug builds, and is erased in release builds. Read more
Calls .tap_ref() only in debug builds, and is erased in release builds. Read more
Calls .tap_ref_mut() only in debug builds, and is erased in release builds. Read more
Calls .tap_deref() only in debug builds, and is erased in release builds. Read more
Calls .tap_deref_mut() only in debug builds, and is erased in release builds. Read more
The resulting type after obtaining ownership.
Creates owned data from borrowed data, usually by cloning. Read more
Uses borrowed data to replace owned data, usually by cloning. Read more
Attempts to convert self into T using TryInto<T>. Read more
The type returned in the event of a conversion error.
Performs the conversion.
The type returned in the event of a conversion error.
Performs the conversion.