effect-io-ai

Package: effect
Module: Cache

Cache.CacheStats

CacheStats represents a snapshot of statistics for the cache as of a point in time.

Signature

export interface CacheStats {
  readonly hits: number
  readonly misses: number
  readonly size: number
}

Source

Since v2.0.0