Expand description
Caching utilities for the file matching engine.
Defines cache data structures and operations to store and retrieve previous matching results for faster repeated execution.
§Examples
use subx_cli::core::matcher::cache::{CacheData, SnapshotItem, OpItem};
// Load existing cache or initialize a new oneStructs§
- Cache
Data - Dry-run cache data structure containing snapshot and match history.
- OpItem
- Single match operation cache item storing result details.
- Snapshot
Item - Snapshot item representing a file state for directory comparison.