//! Tiered storage engine with intelligent data placement
//!
//! This module defines the public interface for a multi-tier storage system
//! that would automatically move data between tiers based on access patterns
//! and age.
//!
//! NOTE: The persistent multi-tier backend is not available in the default
//! (Pure Rust) build. [`TieredStorageEngine::new`] returns
//! [`crate::OxirsError::NotSupported`] so callers can fall back to an
//! in-memory store.
/// Tiered storage engine placeholder.
///
/// The persistent multi-tier backend is unavailable in the Pure Rust build.
;