Can tokio
use libaco to get a better performance ?
#4482
Answered
by
Noah-Kennedy
loongs-zhang
asked this question in
Ideas
-
libaco is a |
Beta Was this translation helpful? Give feedback.
Answered by
Noah-Kennedy
Feb 8, 2022
Replies: 1 comment
-
Tokio uses the futures/coroutine model built into rustc and the standard library. So we can't exactly switch to a different coroutine model. Also, I would be careful when analyzing benchmarks on coroutine switching, as the relevance of such benchmarks to real-world application performance is often limited. |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
hawkw
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Tokio uses the futures/coroutine model built into rustc and the standard library. So we can't exactly switch to a different coroutine model. Also, I would be careful when analyzing benchmarks on coroutine switching, as the relevance of such benchmarks to real-world application performance is often limited.