Slide 26
Slide 26 text
Why Not Using Asyncio? Reasons to Consider
â˘Synchronous processing, which we're used to, is suf
fi
cient.
â˘Primarily CPU-bound tasks:
â˘Asynchronous processing seems like it might behave unpredictably.
â˘We might choose to write in another language
Mainly focusing on machine learning and data analysis with minimal IO
(such as Go, JavaScript (nodejs/deno..), Rust, C#, Swift, etc.)
Ultimately, it depends on the requirements.
If it's for the web, it's mostly about I/O.
It might be a good idea to create it with asyncio.