Три способа выполнить множество задач с 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
😄Bear
➖➖➖➖➖➖
🔘When we use bear as a noun, it's the animal’. As a verb, it has different meanings.
🔘Literally it can me 'to support weight'
🔜The bridge was designed to bear 100 tonnes.
🔘Figuratively, we can use it to mean 'to put up with' or 'to tolerate'
🔜The pain was too much to bear.
🔘 Another literal meaning of bear is 'to carry something' and we use this figuratively in the expression to bear in mind which means 'to think about' or 'to remember'.
🔜Bear in mind the deadline is today - you need to work quickly!
#Bear👨🏫@America
➖➖➖➖➖➖➖➖➖➖➖➖
🆕 Crypto News @Money
😁 Crypto Game @Egame
🇺🇸 US News @America
🇯🇵 Japan News @Japan
🇦🇪 UAE News @Dubai
▶️ Popular Movies @Videos
😜 Best Funny Video @Funnys
😄Bear
➖➖➖➖➖➖
🔘When we use bear as a noun, it's the animal’. As a verb, it has different meanings.
🔘Literally it can me 'to support weight'
🔜The bridge was designed to bear 100 tonnes.
🔘Figuratively, we can use it to mean 'to put up with' or 'to tolerate'
🔜The pain was too much to bear.
🔘 Another literal meaning of bear is 'to carry something' and we use this figuratively in the expression to bear in mind which means 'to think about' or 'to remember'.
🔜Bear in mind the deadline is today - you need to work quickly!
#Bear👨🏫@America
➖➖➖➖➖➖➖➖➖➖➖➖
🆕 Crypto News @Money
😁 Crypto Game @Egame
🇺🇸 US News @America
🇯🇵 Japan News @Japan
🇦🇪 UAE News @Dubai
▶️ Popular Movies @Videos
😜 Best Funny Video @Funnys