Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
menu search
person
Welcome To Ask or Share your Answers For Others

Categories

I have a discord bot that sends sequences of messages, and I've noticed that there is a greater delay between the 5th and 6th messages, 10th and 11th, 5nth and 5n+1th messages than the others, so I wrote some code to explore it:

import asyncio
import typing

@bot.command()
async def count_to(ctx, numeral: typing.Optional[int] = 1):
    for i in range(numeral):
        await ctx.send(i)

@bot.command()
async def count_to_2(ctx, numeral: typing.Optional[int] = 1):
    await asyncio.gather(*[ctx.send(i) for i in range(numeral)])

My intuition was that using asyncio.gather would help but it doesn't. I'm not sure where the speed bump is coming from - does anyone know what is causing it and how to rewrite count_to to get around it?


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
3.7k views
Welcome To Ask or Share your Answers For Others

1 Answer

等待大神解答

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share

548k questions

547k answers

4 comments

86.3k users

...