Loading page…
The smallest unit of data transferred between cache and main memory, typically 64 bytes on x86.
When you access one byte, the CPU fetches the entire cache line. This is why sequential access is fast and random access is slow. False sharing occurs when two cores modify different variables on the same cache line.