-
-
Notifications
You must be signed in to change notification settings - Fork 118
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Asyncio only uses one core #40
Comments
this Is why i have this error? |
I've only set it to download 1 file at a time. when I add many files at the same time (about 50) it always ends up halting in the middle and the program stops working. I have to kill him and go back inI've only set it to download 1 file at a time. when I add many files at the same time (about 50) it always ends up halting in the middle and the program stops working. I have to kill him and put on |
No, it is not related to your problem. |
Well, the downloads stop but the "list, clear, etc" commands keep working |
Using more than one core in a Python process it not easy with asyncio.
https://stackoverflow.com/questions/57356409/python-3-asyncio-and-gil-how-to-use-all-cpu-cores-any-other-options-than-proc
So, opening as many workers as detected cores is not useful.
The text was updated successfully, but these errors were encountered: