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:

Related questions

0 votes
asked Jan 27, 2020 in JAVA by rahuljain1
0 votes
asked Mar 7, 2022 in Web Services Security by rajeshsharma
...