Module cache

Module cache 

Source
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 one

Structs§

CacheData
Dry-run cache data structure containing snapshot and match history.
OpItem
Single match operation cache item storing result details.
SnapshotItem
Snapshot item representing a file state for directory comparison.