Cache Lines

Back to Cache Hierarchy

The fundamental unit of data transfer between cache and memory, typically 64 bytes. When any byte in a cache line is accessed, the entire line is loaded. This makes sequential access patterns fast (spatial locality) and scattered access patterns slow.

memory-models cache cache-lines