|
|
|
|
|
by gime_tree_fiddy
3324 days ago
|
|
Multicore in the sense that the underlying runtime (for the lack of a better word) scales to multiple cores.
Like two threads in python cannot run in parallel (like at the same time, not like second one gets scheduled if first one waits for IO or network), the way a goroutine in Golang does. |
|