False sharing has caused real, hard-to-spot production slowdowns — the Java Disruptor library (LMAX) was built explicitly around padding ring-buffer sequence counters to their own cache line after engineers traced a throughput cliff to exactly this bug. Go's runtime and many lock-free queue implementations still pad hot counters to 64 or 128 bytes for the same reason, since the fix is nearly free but the bug is brutal to diagnose without a profiler.