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 yselivanov
Recipients asvetlov, yselivanov
Date 2017-12-18.02:41:06
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1513564867.85.0.213398074469.issue32355@psf.upfronthosting.co.za>
In-reply-to
Content
asyncio.gather can be made faster if:

1. we don't use functools.partial
2. create less intermittent collections
3. drop unnecessary code (e.g. gather has some code that's duplicated in ensure_future that it uses etc)

The proposed PR makes asyncio.gather 10-15% faster on the attached benchmark.
History
Date User Action Args
2017-12-18 02:41:07yselivanovsetrecipients: + yselivanov, asvetlov
2017-12-18 02:41:07yselivanovsetmessageid: <1513564867.85.0.213398074469.issue32355@psf.upfronthosting.co.za>
2017-12-18 02:41:07yselivanovlinkissue32355 messages
2017-12-18 02:41:07yselivanovcreate