Hacker News new | ask | show | jobs
by wizzard0 3785 days ago
You can't create 1M threads on Windows (or OS X, for that matter) because there won't be enough RAM for stack space. (also, running more threads than physical cores on CPU-bound task is pretty pointless).

Maybe you mean we should schedule something which has a complete event loop? That would be a lot more fair wrt the Akka version, but the Go version does not create any threads either.

1 comments

Not sure what you mean by complete event loop. But I have a strong feeling that you are comparing apples to oranges in your benchmark.
It's indeed apples vs oranges vs pies (Actors/Coroutines/Futures). Probably should make a table :)