show/hide this revision's text 7 deleted 65 characters in body

Concurrency doesn't have many pitfalls.

Synchronizing access to shared data, however, is a different storytricky.

Here are some questions anyone writing shared-data synchronization code should be able to answer:

  1. What is InterlockedIncrement?
  2. Why does InterlockedIncrement need to exist at an assembly language level?
  3. What is read write reordering?
  4. What is the volatile keyword (in c++) and when do you need to use it?
  5. What is a synchronization hierarchy?
  6. What is the ABA problem?
  7. What is cache coherency?
  8. What is a memory barrier?

"Shared everything" concurrency is an extremely leaky abstraction. Teach about shared-data synchronization like a parent would teach their children about drugs - as a purely cautionary tale :) Stick with Adopt shared nothing message passing instead.

show/hide this revision's text 6 deleted 282 characters in body

Concurrency doesn't have many pitfalls.

Synchronizing access to shared data, however, is a different story.

Here are some questions anyone writing shared-data synchronization code should be able to answer:

  1. What is InterlockedIncrementand why ?
  2. Why does this opperation InterlockedIncrement need to exist at an assembly language level?
  3. What is read write reordering?
  4. What is the volatile keyword (in c++) and when do you need to use it?
  5. What is a synchronization hierarchy?
  6. What is the ABA problem?
  7. What is cache coherency?
  8. What is a memory barrier?

"Shared everything" concurrency is a an extremely leaky abstraction, one of the leakiest if you ask me. To get it right, you need to understand details of a) your Virtual Machine b) your compiler and c) your hardware / assembly instruction set - you also have to throw in some graph theory to get locking hierarchies correct.

My suggestion, use a shared nothing, message passing model. If you are going to teach Teach about shared-data synchronization , teach it like a parent would teach their children about drugs - as a purely cautionary tale :) Stick with shared nothing message passing instead.

show/hide this revision's text 5 added 3 characters in body

Concurrency doesn't have many pitfalls.

Synchronizing access to shared data, however, is a different story.

Here are some questions anyone writing shared-data synchronization code should be able to answer:

  1. What is InterlockedIncrement and why does this opperation need to exist at an assembly language level?
  2. What is read write reordering?
  3. What is the volatile keyword (in c++) and when do you need to use it?
  4. What is a synchronization hierarchy?
  5. What is the ABA problem?
  6. What is cache coherency?
  7. What is a memory barrier?

"Shared everything" concurrency is a leaky abstraction, one of the leakiest if you ask me. To get it right, you need to understand details of a) your Virtual Machine b) your compiler and c) your hardware / assembly instruction set - you also have to throw in some graph theory to get locking hierarchies correct.

My suggestion, use a shared nothing, message passing model. If your you are going to teach about shared-data synchronization, teach it like a parent would teach their children about drugs - as a purely cautionary tale :)

show/hide this revision's text 4 deleted 635 characters in body
show/hide this revision's text 3 added 2 characters in body
show/hide this revision's text 2 added 731 characters in body
show/hide this revision's text 1