Introduction to nonblocking algorithms

Tags:

Introduction to nonblocking algorithms – Look Ma no locks! by Brian Goetz

Java Concurrency in Practice라는 책을 Joshua Bloch (Effective Java저자), Doug Lea (Java5의 메모리 모델과 concurrent 패키지는 혼자 다 했다고 해도 과언이 아님)와 함께 준비중인 Brian Goetz의 글입니다.

non blocking algorithm이라고 해서 ‘select’ 는 아님..

Nonblocking algorithms are concurrent algorithms that derive their thread safety not from locks, but from low-level atomic hardware primitives such as compare-and-swap.

Comments

Leave a Reply

Your email address will not be published. Required fields are marked *