并发数 10,偶数请求立即完成,奇数请求被挂起超过 120 秒,是使用方法不对吗?
import asyncio
import aiohttp
import time
async def get(s, i):
start = time.time()
async with s.get('URL') as r:
await r.read()
print(i, ': {} s'.format(round(time.time() - start, 2)))
async def test():
async with aiohttp.ClientSession() as s:
await asyncio.gather(*[get(s, i) for i in range(10)])
if __name__ == "__main__":
loop = asyncio.get_event_loop()
loop.run_until_complete(test())
结果
0 : 0.38 s
8 : 0.4 s
2 : 0.57 s
6 : 0.6 s
4 : 0.6 s
1 : 129.49 s
9 : 129.5 s
3 : 129.52 s
7 : 129.57 s
5 : 129.63 s
这是一个专为移动设备优化的页面(即为了让你能够在 Google 搜索结果里秒开这个页面),如果你希望参与 V2EX 社区的讨论,你可以继续到 V2EX 上打开本讨论主题的完整版本。
V2EX 是创意工作者们的社区,是一个分享自己正在做的有趣事物、交流想法,可以遇见新朋友甚至新机会的地方。
V2EX is a community of developers, designers and creative people.