Type Alias BTreeMapRangeKv

Source
pub type BTreeMapRangeKv = Arc<RwLock<BTreeMap<BytesFullKey, Option<Bytes>>>>;

Aliased Type§

struct BTreeMapRangeKv { /* private fields */ }

Trait Implementations§

Source§

impl RangeKv for BTreeMapRangeKv

Source§

fn range( &self, range: BytesFullKeyRange, limit: Option<usize>, ) -> StorageResult<Vec<(BytesFullKey, Option<Bytes>)>>

Source§

fn rev_range( &self, range: BytesFullKeyRange, limit: Option<usize>, ) -> StorageResult<Vec<(BytesFullKey, Option<Bytes>)>>

Source§

fn ingest_batch( &self, kv_pairs: impl Iterator<Item = (BytesFullKey, Option<Bytes>)>, ) -> StorageResult<()>

Source§

fn flush(&self) -> StorageResult<()>