You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I should do multi threading in case of multiple requirement files.
We do not want multi processing because we are not CPU bounded but I/O bounded in this case, so GIL is not a problem here. And multi threading is easier than multiprocessing because data is shared between threads.
The text was updated successfully, but these errors were encountered:
I should do multi threading in case of multiple requirement files.
We do not want multi processing because we are not CPU bounded but I/O bounded in this case, so GIL is not a problem here. And multi threading is easier than multiprocessing because data is shared between threads.
The text was updated successfully, but these errors were encountered: