namespace StellaOps.Provcache;
///
/// Cache result status.
///
public enum ProvcacheResultStatus
{
///
/// Entry was found in cache and is valid.
///
CacheHit,
///
/// Entry was not found in cache.
///
CacheMiss,
///
/// Cache was bypassed (force re-computation).
///
Bypassed,
///
/// Entry was found but has expired.
///
Expired
}