过去几天以来,我一直在到处寻找内容,但我真的无法弄清楚如何在不和谐的bot中实现分片。我曾尝试查看文档,但找不到能解释如何实现它的任何内容。
我正在使用discord.py
答案 0 :(得分:1)
您应该创建一个AutoShardedClient()
,而不是普通的客户端:
client = discord.AutoShardedClient(shard_count=10)
答案 1 :(得分:1)
就像@Bharel写道,将您的普通客户更改为AutoShardedClient()
,但我建议使用以下方法:
client = commands.AutoShardedBot(command_prefix="??") #with this you can easily choose one prefix for all bots that were sharded