Python threading VS multiprocessing(施工中)
Threading vs Multiprocessing
Threading:
* A new thread is spawned within the existing process
* Starting a thread is faster than starting a process
* Memory is shared between all threads
* Mutexes often necessary to control access to shared data
* One GIL (Global Interpreter Lock) for all threads
Multiprocessing:
* A new process is