Cache or Fetch
Hey guys,
So I've been using Discord.js for a while now. But I still don't understand in which cases I can use cache and in which cases I have to use fetch.
What is the best practice here? D:
3 Replies
- What's your exact discord.js
npm list discord.js
and node node -v
version?
- Not a discord.js issue? Check out #other-js-ts.
- Consider reading #how-to-get-help to improve your question!
- Explain what exactly your issue is.
- Post the full error stack trace, not just the top part!
- Show your code!
- Issue solved? Press the button!
- ✅
Marked as resolved by OPIf you have the guilds intent, these things are cached;
* guilds
* channels
* roles
All others, such as messages, members and users have to be fetched as they are not guaranteed to be cached
Ohhh, thought its more complicated xD Thanks for clarifying