Три способа выполнить множество задач с 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
#phrases
💥Shallow matters
⚜The term "shallow matters" refers to topics, discussions, or concerns that lack depth, seriousness, or
significance. They are often superficial and do not engage with deeper issues or complexities.
⚜While many people were debating the impact of climate change, Sarah seemed more interested in the shallow matters of which celebrity was dating whom."
#Phrases
💢To cry out for
💠To be in desperate need of something
📝Note:- 📝
the subject is generally not a person, but an organisation, object or situation
🌀 Example:-
A:- This room is crying out for some colour and modern furnishing. I suggested subtle green wallpaper, but it didn’t register with Jenny. On second thoughts, maybe red?
B:- RED? You've definitely got a screw loose.
#Phrases
💢 A chink in one’s armour
💠One small weakness in a person or their argument which makes them open to attack or criticism
🌀 Example:-
Our lawyers have been sifting through the evidence but cannot find a chink in the defending company’s armour. It’s no wonder they are being very woolly on how they intend to present our case in court.
#phrases
⚜Prepositional phrase
🔅Until all hours
▪️(informal) Until very late; until the small hours.
▪️I used to stay up until all hours watching television.
#phrases
⚜Hear oneself think
◐To engage in mental activity without being distracted by noise.
◐Please turn down that music. I can hardly hear myself think.