Skip to content
This repository has been archived by the owner on Jul 11, 2024. It is now read-only.

Latest commit

 

History

History
24 lines (19 loc) · 1.08 KB

sharding.md

File metadata and controls

24 lines (19 loc) · 1.08 KB

NOTE! outdated: sharding is handled automatically now. Use disgord.ShardConfig.

Disgord supports the use of sharding for as explained here: discord.com/.../gateway#sharding

Disgord uses an internal shard manager to handle this for you. However, you can customize this and should have enough control to handle sharding across N instances of disgord (see the godoc).

Enforce N number of shards

client := disgord.New(disgord.Config{
    ShardConfig: disgord.ShardConfig{
        ShardIDs: []uint{0, 1, 2, 3}, // must be valid shard ids
    },
    BotToken: "secret token",
})

The entire shard config is optional as your bot will always use sharding by default, and automatically decide on how many shards you need. There is also no need to communicate with individual shards in this design, so there is no difference when you interact with the Disgord interface regardless of how many shards are being used.

// this client is also using shards
client := disgord.New(disgord.Config{
    BotToken: "secret token",
})