False Sharing

Turkish equivalent: Sahte paylaşımDomain: Performance Engineering

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.

  • Cache Coherence
  • Cache Line
  • Memory Barrier
  • NUMA