|
|
|
|
|
by blakecaldwell
3473 days ago
|
|
I spend most of my time in Go these days, and find that it's goroutine model is perfectly suited for both I/O and CPU-bound services. The runtime decides if a thread is needed, and will spawn one any time you're waiting on a syscall. |
|