ReadOptimizedLock

Struct ReadOptimizedLock 

Source
pub struct ReadOptimizedLock<T> { /* private fields */ }
Expand description

A mutex lock optimized for low-contention read access. The RwLock type in the standard library allows multiple readers to make progress concurrently, but scalability is limited if these read-only critical sections are small because acquiring a read-side lock still requires a read-modify-write atomic operation.

This crate uses RCU techniques from the ArcSwap crate to avoid expensive atomic operations when acquiring a shared lock. The downside is that acquiring a write lock is a good deal more expensive. The intent here is to use it for parallel egglog where write-side critical sections are fairly large and uncontended, but we need high scalability for read-only operations.

Implementations§

Source§

impl<T> ReadOptimizedLock<T>

Source

pub fn new(data: T) -> Self

Source

pub fn into_inner(self) -> T

Extract the inner data from the lock.

Source

pub fn as_mut_ref(&mut self) -> &mut T

Get mutable access to the underlying data. This operation does no synchronization as the mutable receiver guarantees exclusive access for safe code.

Source

pub fn read(&self) -> MutexReader<'_, T>

Create a Reader object that grants read access to the data.

This method will block for any ongoing writes to complete.

Source

pub fn lock(&self) -> MutexWriter<'_, T>

Trait Implementations§

Auto Trait Implementations§

§

impl<T> !Freeze for ReadOptimizedLock<T>

§

impl<T> !RefUnwindSafe for ReadOptimizedLock<T>

§

impl<T> Unpin for ReadOptimizedLock<T>
where T: Unpin,

§

impl<T> UnwindSafe for ReadOptimizedLock<T>
where T: UnwindSafe,

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> 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.