PyO3 / tokio

Asyncio event loop written in Rust language
Other
245 stars 12 forks source link

It would be interesting to see some benchmarking on this one. #43

Open zkanda opened 7 years ago

zkanda commented 7 years ago

As the title says.

Same as like this: https://github.com/MagicStack/uvloop

fafhrd91 commented 7 years ago

There are some benchmarks in #44 But overal I doubt we can get same performance as uvloop. Tokio-rs and libuv are built around different concepts. Libuv is built for side effects, and asyncio works similar. It is very hard to optimize async-tokio for same behaviour