GMP — Goroutine (G), Machine (M), Processor (P). Go's scheduler.
Components:
1fmt.Println("GOMAXPROCS:", runtime.GOMAXPROCS(0))2runtime.Gosched() // Yield
Work stealing:
Handoff:
When to tune:
Common mistakes:
GOMAXPROCS(0) with setting.LockOSThread() without need.