Java - False Sharing
False Sharing:
- False sharing is when the memory cells are different but physically fall on the same CPU catch line.
- In other words, when 2 threads write the different variables part of same cache line.
Comments
Post a Comment