python并发请求_python – 限制并发请求数aiohttp

您的限制设置正常.你在调试时弄错了.

正如Mikhail Gerasimov在the comment中指出的那样,你将print()调用放在错误的位置 – 它必须在session.get()上下文中.

为了确保限制得到尊重,我针对简单的日志记录服务器测试了您的代码 – 测试显示服务器正好接收您在TCPConnector中设置的连接数.这是测试:

import asyncio

import aiohttp

loop = asyncio.get_event_loop()

class SilentServer(asyncio.Protocol):

def connection_made(self, transport):

# We will know when the connection is actually made:

print('SERVER |', transport.get_extra_info('peername'))

async def get_images(url, session):

chunk_size = 100

# This log doesn't guarantee that we will connect,

# session.get() will freeze if you reach TCPConnector limit

print(f'CLIENT | Making request to {url}')

async with session.get(url=url) as r:

while True:

chunk = await r.content.read(chunk_size)

if not chunk:

break

urls = [f'http://127.0.0.1:1337/{x}' for x in range(20)]

conn = aiohttp.TCPConnector(limit=3)

session = aiohttp.ClientSession(connector=conn, loop=loop)

async def test():

await loop.create_server(SilentServer, '127.0.0.1', 1337)

await asyncio.gather(*(get_images(url, session=session) for url in urls))

loop.run_until_complete(test())

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值