I am trying to understand the advantages of multiprocessing over threading. I know that multiprocessing gets around the Global Interpreter Lock, but what other advantages are there, and can threading not do the same thing?
Here are some pros/cons I came up with.
multiprocessing
module includes useful abstractions with an interface much like threading.Thread
Queue
module), then manual use of synchronization primitives become a necessity (decisions are needed for the granularity of locking)