go-proverbs / go-proverbs.github.io

Inspired by @rob_pike talk at Gopherfest SV 2015
MIT License
334 stars 21 forks source link

Never start a goroutine without knowing how it will stop #27

Open zombiezen opened 6 years ago

zombiezen commented 6 years ago

Source: https://dave.cheney.net/2016/12/22/never-start-a-goroutine-without-knowing-how-it-will-stop

terinjokes commented 6 years ago

Or perhaps the related, from Bryan C. Mills:

Start goroutines when you have concurrent work to do now.