cache line
RU: cache line (строка кеша)
The fixed-size unit of data transferred between main memory and a CPU cache — commonly 64 bytes on x86/x64 architectures. When any byte within the line is accessed, the entire line is loaded; adjacent data benefits automatically, but false sharing occurs when two threads modify distinct variables that share a line, forcing costly cross-core invalidations.