ycliper

Популярное

Музыка Кино и Анимация Автомобили Животные Спорт Путешествия Игры Юмор

Интересные видео

2025 Сериалы Трейлеры Новости Как сделать Видеоуроки Diy своими руками

Топ запросов

смотреть а4 schoolboy runaway турецкий сериал смотреть мультфильмы эдисон
Скачать

False Sharing in Java

Java

Java Concurrency

False Sharing

False Sharing in Java

Java False Sharing

Автор: 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  

Не удается загрузить Youtube-плеер. Проверьте блокировку Youtube в вашей сети.
Повторяем попытку...
False Sharing in Java

Поделиться в:

Доступные форматы для скачивания:

Скачать видео

  • Информация по загрузке:

Скачать аудио

Похожие видео

Single-threaded and Same-threaded designs

Single-threaded and Same-threaded designs

Compare and Swap in Java

Compare and Swap in Java

Thread Signaling in Java

Thread Signaling in Java

Java ForkJoinPool

Java ForkJoinPool

Java Synchronized - The synchronized keyword in Java and Java synchronized blocks and methods

Java Synchronized - The synchronized keyword in Java and Java synchronized blocks and methods

Cache Issues -- False Sharing -- Mike Bailey, Oregon State University

Cache Issues -- False Sharing -- Mike Bailey, Oregon State University

The Java Memory Model - The Basics

The Java Memory Model - The Basics

Parallel C++: False Sharing

Parallel C++: False Sharing

МОНИТОР Xiaomi 4К 160гц за 21 тысячу рублей

МОНИТОР Xiaomi 4К 160гц за 21 тысячу рублей

ReadWriteLock vs ReentrantLock

ReadWriteLock vs ReentrantLock

© 2025 ycliper. Все права защищены.



  • Контакты
  • О нас
  • Политика конфиденциальности



Контакты для правообладателей: [email protected]