Browse Source
This commit cleans up a mess I created when I originally added the `Guild.sync` functionality. The original intention of this function was to provide a simple interface to ensuring the local state of a guild was "up to date". This abstraction turned out to be a bad idea for the following reasons; - Its completely unclear what "sync" means in the context of a Guild. Hiding the way syncing guild members works (which is a pretty "developer unfriendly" as it is) just results in more confusion for very little value. - Discord technically supports sending multiple guild ids in a single `REQUEST_GUILD_MEMBERS` op which this interface didn't support or handle. Using this function as it was intended on a largeish bot would result in your gateway client getting rate limited for quite a bit on startup (which is lame). - This implementation of guild member syncing resulted in a `synced` flag on guilds, which is basically completely useless and doesn't mean anything much at all (since REQUEST_GUILD_MEMBERS is purely async and there is no correct way to confirm a request was fulfilled. To cleanup this mess I've made the following changes; - Entirely deprecate `Guild.sync`. This is just a bad function name and should die in a fire to save our future children from pain and frustration. - Add `Guild.request_guild_members`. This function now properly conveys what it does and provides a more correct interface to this Discord functionality (nb: Guild.sync now calls this function, which does not prevent multiple calls from firing requests). - Add `GatewayClient.request_guild_members`. This function provides an alternative interface for sending the request guild members op without low-level GatewayClient interfacing. Ideally users who need to avoid being rate limited and/or want better guild member syncing performance can use this function which accepts multiple guild ids. TL;DR; - If you don't call `Guild.sync`; you don't need to worry about anything. - If you call `Guild.sync` anywhere at all and you don't really care about the performance impact of syncing guild members one-by-one; just change your code to call `Guild.request_guild_members`. - If you call `Guild.sync` in a `GUILD_CREATE` handler or you care about the performance impact of syncing multiple Guilds; move to using the underlying GatewayClient interface and sync multiple guilds at once (likely in batches).pull/116/head
3 changed files with 24 additions and 14 deletions
Loading…
Reference in new issue