Hacker News new | ask | show | jobs
by Rapzid 4083 days ago
Meh, it really doesn't come up that often. Every method call is an opportunity for the scheduler to run, not just specific ones. I find it is very rare indeed for a significant amount of work to be done without making method calls. Go also uses threads and makes parallel programming easy.. For me anyway.
1 comments

Ah, I didn't realize that it happened at every method call. That seems more manageable. Thanks.