CacheOnly
CacheOnly is a term used in computing to describe a mode or pattern in which data reads are served exclusively from a local or colocated cache, with access to the primary data store limited or avoided depending on configuration. In strict CacheOnly modes, a read on a cache miss does not trigger a fetch from the backing store and instead returns an absence or error, or follows a predefined fallback path. Many systems offer CacheOnly as a configurable option to support offline operation, low latency, or reduced load on origin services.
CacheOnly relies on a cache hierarchy or distributed caches to store frequently accessed data. Key mechanisms
CacheOnly is commonly used in content delivery networks, edge computing, and read-heavy applications where latency is
Caching, cache coherence, read-through cache, write-through cache, write-back cache, TTL and eviction policies.