pub struct MemStorage { /* private fields */ }Expand description
Re-export MemStorage from raft-rs
In a production implementation, this should be replaced with
a persistent storage implementation that writes to disk.
MemStorage is a thread-safe but incomplete implementation of Storage, mainly for tests.
A real Storage should save both raft logs and applied data. However MemStorage only
contains raft logs. So you can call MemStorage::append to persist new received unstable raft
logs and then access them with Storage APIs. The only exception is Storage::snapshot. There
is no data in Snapshot returned by MemStorage::snapshot because applied data is not stored
in MemStorage.
Implementations§
Source§impl MemStorage
impl MemStorage
Sourcepub fn new() -> MemStorage
pub fn new() -> MemStorage
Returns a new memory storage value.
Sourcepub fn new_with_conf_state<T>(conf_state: T) -> MemStorage
pub fn new_with_conf_state<T>(conf_state: T) -> MemStorage
Create a new MemStorage with a given Config. The given Config will be used to
initialize the storage.
You should use the same input to initialize all nodes.
Sourcepub fn initialize_with_conf_state<T>(&self, conf_state: T)
pub fn initialize_with_conf_state<T>(&self, conf_state: T)
Initialize a MemStorage with a given Config.
You should use the same input to initialize all nodes.
Sourcepub fn rl(&self) -> RwLockReadGuard<'_, MemStorageCore>
pub fn rl(&self) -> RwLockReadGuard<'_, MemStorageCore>
Opens up a read lock on the storage and returns a guard handle. Use this with functions that don’t require mutation.
Sourcepub fn wl(&self) -> RwLockWriteGuard<'_, MemStorageCore>
pub fn wl(&self) -> RwLockWriteGuard<'_, MemStorageCore>
Opens up a write lock on the storage and returns guard handle. Use this with functions that take a mutable reference to self.
Trait Implementations§
Source§impl Clone for MemStorage
impl Clone for MemStorage
Source§fn clone(&self) -> MemStorage
fn clone(&self) -> MemStorage
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read more