Hacker News new | ask | show | jobs
by WindSoldier 1474 days ago
Why do you say async-std is so much slower? If there any result or report shows that? I'm also curious about the `perf` you mentioned.
1 comments

Well, at least it was slower a while ago, for the networking code I was working on. Could be outperforming for other use cases. As for perf, when you run it you can see that a lot of cpu is sent on work stealing and other bookkeeping. Which is fine, and the single threaded runtime doesn’t have some of that, so I use that a lot.