#cell #once-cell #once #async #lazy-evaluation

double-checked-cell-async

A thread-safe lazily initialized cell using double-checked locking

1 stable release

2.0.2 Feb 2, 2020

#857 in Concurrency

Download history 23/week @ 2023-11-26 4/week @ 2023-12-03 15/week @ 2024-01-07 1/week @ 2024-01-14 9/week @ 2024-01-21 30/week @ 2024-01-28 73/week @ 2024-02-04 35/week @ 2024-02-11 110/week @ 2024-02-18 199/week @ 2024-02-25 70/week @ 2024-03-03 55/week @ 2024-03-10

437 downloads per month
Used in 2 crates (via novel)

MIT/Apache

18KB
120 lines

async-double-checked-cell

An async fork of double-checked-cell, a thread-safe lazily initialized cell using double-checked locking.

Introduction

Provides a memory location that can be safely shared between threads and initialized at most once. Once the cell is initialized it becomes immutable.

If you do not need to change the value after initialization DoubleCheckedCell<T> is more efficient than a Mutex<Option<T>>.

use double_checked_cell::DoubleCheckedCell;
use futures::future::ready;

let cell = DoubleCheckedCell::new();

// The cell starts uninitialized.
assert_eq!(cell.get().await, None);

// Perform potentially expensive initialization.
let value = cell.get_or_init(async { 21 + 21 }).await;
assert_eq!(*value, 42);
assert_eq!(cell.get().await, Some(&42));

// The cell is already initialized.
let value = cell.get_or_init(async { unreachable!() }).await;
assert_eq!(*value, 42);
assert_eq!(cell.get().await, Some(&42));
  • once_cell - Provides a superset of this crate's functionality, with a nicely consistent API.

These crates are similar but distinct by design:

  • lazy-init – Based on a LazyTransform<T, U> which can lazily consume T to produce an U. Therefore cannot support fallible initialization.
  • lazycellAtomicLazyCell does not support lazy initialization (unlike its non-thread-safe counterpart LazyCell using LazyCell::borrow_with()).
  • mitochondria – Not Sync.
  • lazy_static - With the optional (currently nightly only) const_fn feature, DoubleCheckedCell::new() can also be used in static/const context. However lazy_static! is more convenient when there is only a single way to initialize the cell.

Documentation

Read the documentation

Changelog

  • 2.0.2
    • Update to parking_lot 0.9.
  • 2.0.1
    • Update to parking_lot 0.7.
  • 2.0.0
    • Changed unwinding behavior: DoubleCheckedCell no longer implements poisoning.
    • New optional cargo features: parking_lot_mutex, const_fn.
  • 1.1.0
    • Fix unsoundness: DoubleCheckedCell<T> where T: !Send cannot be Sync.
  • 1.0.1
    • Ignore unused_unsafe warning due to UnsafeCell::into_inner() no longer beeing unsafe.
  • 1.0.0
    • Initial release.

License

double-checked-cell is licensed under the Apache 2.0 and MIT license, at your option.

Dependencies

~725KB
~14K SLoC