|
|
|
|
|
by marcher
6400 days ago
|
|
Python 2.6 and 3.0 ship with a new library called multiprocessing which provides mechanisms for process control and intercommunication, which conveniently sidesteps the GIL limitation that prevents multiple core usage. The library is loosely based around the existing threading API, and allows for seamless transfer of Python objects between processes (unlike other forms of IPC). |
|
That's annoying... Even more annoying when I think it's easier to do in Java ;-)