|
|
|
|
|
by justinsb
4412 days ago
|
|
I've been wondering about this as well. Goroutines start with an 8KB stack size now; native threads seem to use an 8MB _virtual_ stack size of which often only one or two pages (of 4KB) will be used. So is the primary remaining advantage of goroutines vs threads the efficiency of the go scheduler? |
|
EDIT: So I guess we should run more big multi-threaded server apps with musl and see what breaks.