Три способа выполнить множество задач с asyncio
Функция для примера:
async def do_it(n):
await asyncio.sleep(random.uniform(0.5, 1))
return n
1. Последовательный вызов
async def main():
for i in range(100):
result = await do_it(i)
Такой вызов имеет смысл только тогда, когда результат одной задачи требуется для вызова следующей.
Если они независимы, то это антипаттерн, так как аналогичен простому синхронному вызову по очереди.
2. Упорядоченный результат
async def main():
tasks = [do_it(i) for i in range(100)]
results = await asyncio.gather(*tasks)
Выполняет корутины конкурентно и возвращает результат в виде списка.
Полезен когда требуется получить результаты в том же порядке в котором задачи отправлены.
3. Результат по мере готовности
tasks = [asyncio.create_task(do_it(i)) for i in range(100)]
for cor in asyncio.as_completed(tasks):
result = await cor
Так же выполняет корутины конкурентно, но не гарантирует порядок. Результат возвращается по мере готовности, каждый отдельно.
Полезен когда нужно обработать любой ответ как можно скорее.
#async
👑🏟 Los Royals están cambiando las dimensiones de la pared del campo exterior, moviendo la mayoría de las vallas del Estadio Kauffman en 10 pies y reduciendo su altura.
El equipo espera que las alteraciones en el Estadio Kauffman transformen "un estadio notoriamente malo para batear jonrones", escribe Jeff Passan, en un parque que "jugará al nivel promedio de la liga".
El centro y las esquinas permanecerán iguales, pero desde el centro izquierdo y derecho HASTA las esquinas, las longitudes se cambiarán de 389 pies a 379 pies, y la altura de la pared se cambiará de 10 pies a 8,5 pies.
#️⃣#Royals
🗞 | t.me/MLB_Daily
👑👑 Los Royals y el tercera base Maikel García supuestamente acordaron una extensión de 5 años, según múltiples informes, incluido el del insider de MLB Network, Jon Heyman.
#️⃣#Royals#MGarcía
🗞 | t.me/MLB_Daily
UK's Prince William says great minds should focus on saving Earth not space travel
Britain's Prince William takes veiled swipe at the billionaires embroiled in a space tourism race, saying the world's greatest brains should instead be focused on solving the environmental problems.
#PrinceWilliam#Britain#UK#Royals#SpaceTourism#ClimateChange#Earth#Environment#News#Reuters
Subscribe: http://smarturl.it/reuterssubscribe
Reuters brings you the latest business, finance and breaking news video from around the globe. Our reputation for accuracy and impartiality is unparalleled.
Get the latest news on: http://reuters.com/
Follow Reuters on Facebook: https://www.facebook.com/Reuters
Follow Reuters on Twitter: https://twitter.com/Reuters
Follow Reuters on Instagram: https://www.instagram.com/reuters/?hl=en
➖@reutersworldchannel➖