dualcache-ff 0.4.0

A wait-free, high-performance concurrent cache optimized for extreme read-to-write ratios.
Documentation
#![cfg_attr(all(not(feature = "std"), not(any(feature = "loom", loom))), no_std)]
extern crate alloc;

pub mod arena;
pub mod cache_padded;
pub mod config;
pub mod cache;
pub mod daemon;
pub mod filters;
pub mod lossy_queue;
pub mod storage;
pub mod unsafe_core;
pub mod workers;
pub mod static_cache;
pub mod tls;
pub mod spawner;
pub(crate) mod sync;

pub use config::Config;
pub use cache::{DualCacheFF, WorkerState};
pub use spawner::{DaemonSpawner, DefaultSpawner};
pub use tls::{TlsProvider, DefaultTls};
pub use daemon::Daemon;
pub use static_cache::static_cache::StaticDualCache;