Skip to content
Advertisement

Tag: false-sharing

False sharing and volatile

Good day, I recently found an annotation introduced in Java 8 called Contended. From this mailing list I read what is false sharing and how annotation allows objects or fields to allocate an entire cache line. After some research I found that if two cores store the same cache line and one of them modify it then the second one

Advertisement