▲ | JackSlateur 2 days ago | |
I share your experience asyncio is easier than threads or multiprocess: less locking issue, easier to run small chunks of code in // (easier to await something than to create a thread that run some method) | ||
▲ | zelphirkalt 20 hours ago | parent [-] | |
There is no locking issue, if you don't mutate some global state from more than 1 thread at the same time. If you program mostly in pure functions, this is a non issue. |