Struct matterdb::DbOptions[][src]

#[non_exhaustive]pub struct DbOptions {
    pub max_open_files: Option<i32>,
    pub create_if_missing: bool,
    pub compression_type: CompressionType,
    pub max_total_wal_size: Option<u64>,
}

Options for the database.

These parameters apply to the underlying database, currently RocksDB.

Fields (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: Option<i32>

Number of open files that can be used by the database.

The underlying database opens multiple files during operation. If your system has a limit on the number of files which can be open simultaneously, you can adjust this option to match the limit. Note, that limiting the number of simultaneously open files might slow down the speed of database operation.

Defaults to None, meaning that the number of open files is unlimited.

create_if_missing: bool

An option to indicate whether the system should create a database or not, if it’s missing.

This option applies to the cases when a node was switched off and is on again. If the database cannot be found at the indicated path and this option is switched on, a new database will be created at that path and blocks will be included therein.

Defaults to true.

compression_type: CompressionType

An algorithm used for database compression.

Defaults to CompressionType::None, meaning there is no compression.

max_total_wal_size: Option<u64>

Max total size of the WAL journal in bytes.

Defaults to None, meaning that the size of WAL journal will be adjusted by the rocksdb.

Implementations

impl DbOptions[src]

pub fn new(
    max_open_files: Option<i32>,
    create_if_missing: bool,
    compression_type: CompressionType,
    max_total_wal_size: Option<u64>
) -> Self
[src]

Creates a new DbOptions object.

Trait Implementations

impl Clone for DbOptions[src]

impl Copy for DbOptions[src]

impl Debug for DbOptions[src]

impl Default for DbOptions[src]

impl<'de> Deserialize<'de> for DbOptions[src]

impl PartialEq<DbOptions> for DbOptions[src]

impl Serialize for DbOptions[src]

impl StructuralPartialEq for DbOptions[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Pointable for T

type Init = T

The type for initializers.

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,