DevSprout / optimizing-java

🔧 자바 최적화 스터디
4 stars 0 forks source link

Chapter 12. 동시 성능 기법 #12

Open HaeUlNam opened 1 year ago

HaeUlNam commented 1 year ago

정리

질문

MinJunKweon commented 1 year ago

느낀점

끄적끄적

JMM의 이해

동시성 라이브러리 구축

스핀락

Latch

Fork/Join

최신 자바 동시성

minkukjo commented 1 year ago

병렬 처리의 모순

JMM

동시성 라이브러리

래치/배리어

포크/조인

최신 자바 동시성

느낀 점

LOG-INFO commented 1 year ago

정리

궁금한 점

public static ExecutorService newSingleThreadExecutor(ThreadFactory threadFactory) { return new FinalizableDelegatedExecutorService (new ThreadPoolExecutor(1, 1, 0L, TimeUnit.MILLISECONDS, new LinkedBlockingQueue(), threadFactory)); }