Skip to main content

MemoryKvStore

Struct MemoryKvStore 

Source
pub struct MemoryKvStore { /* private fields */ }
Expand description

In-memory key-value store using lock-free concurrent hashmap.

Thread-safe and optimized for high-concurrency read/write workloads. Uses DashMap internally for O(1) average-case operations.

§Example

use trueno_db::kv::{KvStore, MemoryKvStore};

let store = MemoryKvStore::new();
store.set("hello", b"world".to_vec()).await?;
assert_eq!(store.get("hello").await?, Some(b"world".to_vec()));

Implementations§

Source§

impl MemoryKvStore

Source

pub fn new() -> Self

Create a new in-memory KV store.

Source

pub fn with_capacity(capacity: usize) -> Self

Create with pre-allocated capacity.

Source

pub fn len(&self) -> usize

Get the number of entries in the store.

Source

pub fn is_empty(&self) -> bool

Check if the store is empty.

Source

pub fn clear(&self)

Clear all entries.

Trait Implementations§

Source§

impl Default for MemoryKvStore

Source§

fn default() -> Self

Returns the “default value” for a type. Read more
Source§

impl KvStore for MemoryKvStore

Source§

async fn get(&self, key: &str) -> Result<Option<Vec<u8>>>

Get a value by key. Read more
Source§

async fn set(&self, key: &str, value: Vec<u8>) -> Result<()>

Set a value for a key. Read more
Source§

async fn delete(&self, key: &str) -> Result<()>

Delete a key. Read more
Source§

async fn exists(&self, key: &str) -> Result<bool>

Check if a key exists.
Source§

fn batch_get( &self, keys: &[&str], ) -> impl Future<Output = Result<Vec<Option<Vec<u8>>>>> + Send

Get multiple keys in a batch (SIMD-optimized). Read more
Source§

fn batch_set( &self, pairs: Vec<(&str, Vec<u8>)>, ) -> impl Future<Output = Result<()>> + Send

Set multiple key-value pairs in a batch (SIMD-optimized).

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> Downcast<T> for T

Source§

fn downcast(&self) -> &T

Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

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

Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

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

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
Source§

impl<T> Upcast<T> for T

Source§

fn upcast(&self) -> Option<&T>

Source§

impl<T> WasmNotSend for T
where T: Send,

Source§

impl<T> WasmNotSendSync for T

Source§

impl<T> WasmNotSync for T
where T: Sync,