False Sharing
A multicore performance problem in which independent variables share a cache line and cause unnecessary coherence traffic when different cores modify them.
Boundaries
False sharing occurs when independent data shares a cache line; it is different from true sharing where threads intentionally access the same variable.
Related Concepts
- Cache Coherence
- Cache Line
- Memory Barrier
- NUMA