从多处理中尝试Pool.map函数:
http://docs.python.org/library/multiprocessing.html#using-a-pool-of-
workers
它本身不是多线程的,但这实际上是很好的,因为GIL在Python中严重破坏了多线程。

从多处理中尝试Pool.map函数:
http://docs.python.org/library/multiprocessing.html#using-a-pool-of-
workers
它本身不是多线程的,但这实际上是很好的,因为GIL在Python中严重破坏了多线程。