Ultimate Go Programming LiveLessons Season 1 Episode 9 Part IV: Lesson 9: Data Races
- June 16, 2017
A data race is when we have multiple go routines trying to access the same memory location, where one is a read and one is a write. And this can start to happen when you have more, when you start creating all of those go routines. And a data race can besome of the nastiest bugs that we find in software.