Go Race Detector: Finding Data Races
A data race happens when two or more goroutines access the same memory location concurrently, and at least one of those accesses is a write. The result is undefined behavior—your program might crash,…
Read more →