This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author pitrou
Recipients bquinlan, pitrou
Date 2011-04-09.23:45:13
SpamBayes Score 0.0011108965
Marked as misclassified No
Message-id <1302392714.47.0.0660711097053.issue11815@psf.upfronthosting.co.za>
In-reply-to
Content
A further optimization would be to use a SimpleQueue (from multiprocessing.queues) for the result_queue in the ProcessPoolExecutor. A SimpleQueue is much more light-weight than a normal Queue, which has a bunch of additional locks and a dedicated thread.
History
Date User Action Args
2011-04-09 23:45:14pitrousetrecipients: + pitrou, bquinlan
2011-04-09 23:45:14pitrousetmessageid: <1302392714.47.0.0660711097053.issue11815@psf.upfronthosting.co.za>
2011-04-09 23:45:13pitroulinkissue11815 messages
2011-04-09 23:45:13pitroucreate