pub const CACHE_LINE_SIZE: usize = 64;Expand description
Cache line size for alignment (64 bytes on x86_64)
This is the typical size of a CPU cache line. Aligning buffers to this boundary prevents false sharing between threads running on different cores.