False Sharing in Java
Автор: Jakob Jenkov
Загружено: 2021-07-25
Просмотров: 14625
Описание:
False sharing in Java occurs when two threads running on two different CPUs write to two different variables which happen to be stored within the same CPU cache line. When the first thread modifies one of the variables - the whole CPU cache line is invalidated in the CPU caches of the other CPU where the other thread is running. This means, that the other CPUs need to reload the content of the invalidated cache line - even if they don't really need the variable that was modified within that cache line.
This false sharing tutorial explains how false sharing can occur in Java code, as we well as what you can do to avoid false sharing in your Java apps - e.g. by using the @Contended Java annotation.
Chapters:
0:00 False sharing introduction
5:45 False sharing code examples
11:23 @Contended Built-in Java Annotation
False sharing in Java - text:
https://jenkov.com/tutorials/java-con...
Java Concurrency Tutorials - text:
https://jenkov.com/tutorials/java-con...
Java Concurrency video playlist:
• Java Concurrency and Multithreading
Повторяем попытку...

Доступные форматы для скачивания:
Скачать видео
-
Информация по загрузке: