Crate ebr

source ·
Expand description

Simple, CPU cache-friendly epoch-based reclamation (EBR).

use ebr::Ebr;

let ebr: Ebr<Box<u64>> = Ebr::default();

let mut guard = ebr.pin();

guard.defer_drop(Box::new(1));

Structs

  • Epoch-based garbage collector with extremely efficient single-threaded operations in the hot-path.