logoalt Hacker News

jeffbeeyesterday at 7:57 PM1 replyview on HN

What primitives are we discussing? Any Go programmer can and should use the `go` keyword and the `sync.Mutex` type from their first program.


Replies

closeparenyesterday at 9:01 PM

It's pretty easy to get yourself into trouble with channels: deadlocks, send on closed, channel leaks, deadlocks "fixed" thoughtlessly with arbitrarily-sized buffers, etc.

show 1 reply