Skip to content

Latest commit

 

History

History
 
 

episode12

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 

Concurrency Series: Eating Tapas

Watch The Screencast

Go in 5 Minutes, episode 12.

This screencast overviews the "Eating Tapas" problem on Trivial Concurrency Exercises for the Confused Newbie Gopher, and provides a solution.

We're continuing the concurrency series - see arschles#14 for progress.

Screencast video: https://www.goin5minutes.com/screencast/episode_12_concurrency_eating_tapas/

Outline

  1. This problem
  • Shared state
  • Don't communicate by sharing memory, share memory by communicating. See https://golang.org/ref/mem
  • Sidenote: actor model
  1. Example code