0 votes
in JAVA by
What is false sharing in the context of multi-threading?

1 Answer

0 votes
by

false sharing is one of the well-known performance issues on multi-core systems, where each process has its local cache. false sharing occurs when threads on different processor modify variables that reside on same cache line as shown in the following image:

...