Go runtime मा एक scheduler समावेश छ जसले धेरै goroutines लाई OS threads को सानो संख्यामा multiplexes गर्छ। यो M:N scheduling (M goroutines लाई N OS threads मा) को कारण goroutines यति सस्तो छन् र Go को concurrency यति scalable छ। यसलाई बुझ्नुले goroutine performance को व्याख्या गर्छ।
The G-M-P model
G (Goroutine) — your concurrent task (lightweight, ~2KB stack to start)
M (Machine) — an OS thread (the actual thread the OS schedules)
P (Processor) — a logical processor / scheduling context; holds a queue of runnable Gs
(the number of P's = GOMAXPROCS, default = number of CPU cores)
The scheduler runs G's on M's, coordinated through P's:
Each P has a local run queue of goroutines; an M must hold a P to run G's.
