Welcome toVigges Developer Community-Open, Learning,Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
3.6k views
in Technique[技术] by (71.8m points)

python - Varying speed when messages are sent and recieved by discord bots

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?


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)
等待大神解答

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to Vigges Developer Community for programmer and developer-Open, Learning and Share
...