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ยง

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