vyre_runtime/pipeline_cache/
mod.rs1#![allow(clippy::missing_const_for_thread_local, clippy::explicit_auto_deref)]
15
16mod disk;
17mod fingerprint;
18mod in_memory;
19mod layered;
20mod metrics;
21#[cfg(feature = "remote-cache")]
22mod remote;
23mod store;
24
25#[cfg(test)]
26pub(super) mod test_helpers;
27
28pub use disk::{
29 DiskCache, DiskCacheDurabilityReport, DiskCacheError, PersistentPipelineCacheStore,
30};
31pub use fingerprint::PipelineFingerprint;
32pub use in_memory::{InMemoryEvictionReason, InMemoryEvictionReport, InMemoryPipelineCache};
33pub use layered::{LayeredPipelineCache, LayeredPromotionReport};
34pub use metrics::{PipelineCacheMetricError, PipelineCacheMetrics};
35#[cfg(feature = "remote-cache")]
36pub use remote::RemoteCache;
37pub use store::PipelineCacheStore;