[][src]Struct ipfs_sqlite_block_store::async_block_store::GcConfig

pub struct GcConfig {
    pub interval: Duration,
    pub min_blocks: usize,
    pub target_duration: Duration,
}

Configuration for the gc loop

This is done as a config struct since we might have additional parameters here in the future, such as limits at which to do a full gc.

Fields

interval: Duration

interval at which gc runs

note that this is implemented as delays between gcs, so it will not run exactly at this interval, but there will be some drift if gc takes long.

min_blocks: usize

minimum number of blocks to collect in any case

Using this parameter, it is possible to guarantee a minimum rate with which gc will be able to keep up. It is min_blocks / interval.

target_duration: Duration

The target maximum gc duration of a single gc.

This can not be guaranteed, since we guarantee to collect at least min_blocks. But as soon as this duration is exceeded, the incremental gc will stop doing additional work.

Trait Implementations

impl Clone for GcConfig[src]

impl Debug for GcConfig[src]

impl Default for GcConfig[src]

impl Eq for GcConfig[src]

impl PartialEq<GcConfig> for GcConfig[src]

impl StructuralEq for GcConfig[src]

impl StructuralPartialEq for GcConfig[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> From<T> for T[src]

impl<T> Instrument for T[src]

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

impl<T> References<RawCodec> for T

impl<T> Same<T> for T

type Output = T

Should always be Self

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.