On 2/8/11 10:11 AM, Brian Curtin wrote:
On Tue, Feb 8, 2011 at 06:34, Vishal <vsapr...@gmail.com
<mailto:vsapr...@gmail.com>> wrote:

    Also, multiprocessing has issues on Windows (most probably because of
    the way CreateProcess() functions...)

Such as?

Unlike a UNIX fork, CreateProcess() does not have the same copy-on-write semantics for initializing the memory of the new process. If you want to pass data to the children, the data must be pickled and sent across the process boundary. He's not saying that multiprocessing isn't useful at all on Windows, just less useful for the scenarios he is considering here.

--
Robert Kern

"I have come to believe that the whole world is an enigma, a harmless enigma
 that is made terrible by our own mad attempt to interpret it as though it had
 an underlying truth."
  -- Umberto Eco

--
http://mail.python.org/mailman/listinfo/python-list

Reply via email to