9 ms·
Does the task system use threading, multiprocessing, or something else? I.E. can I do IO heavy tasks with this framework? I'd like to read the docs myself to f
by TrickardRixx 3y ago
Does the task system use threading, multiprocessing, or something else? I.E. can I do IO heavy tasks with this framework?
I'd like to read the docs myself to find out, but it seems like they are not hosted on the website. I can see that I can install the package and run the docs command, but I'd really rather use the web browser I'm already in to explore a new (to me) project's docs.
- mondrian 3y agoThe task system uses a thread pool as well as an ioloop. So tasks can be normal functions as well as `async def` functions/coroutines. You can also pass in a custom executor and use processes instead of threads. Thanks for the feedback wrt docs app.
- TrickardRixx 3y agoThank you for releasing this project. It looks great! I just need to find an excuse to try it out now.