Message308508
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. |
|
| Date |
User |
Action |
Args |
| 2017-12-18 02:41:07 | yselivanov | set | recipients:
+ yselivanov, asvetlov |
| 2017-12-18 02:41:07 | yselivanov | set | messageid: <[email protected]> |
| 2017-12-18 02:41:07 | yselivanov | link | issue32355 messages |
| 2017-12-18 02:41:07 | yselivanov | create | |
|