#What's the difference between users.fetch() and users.cache.get()?
13 messages · Page 1 of 1 (latest)
fetch runs an API call, cache doesnt. With users it is safer to use fetch, because most of them wont be in the cache
Thanks for your quick reply!
note that fetch returns a Promise
Does .get() return a collection then?
Doesn't .cache return a collection?
OHH
takes key, returns the element under that key (or undefined if no key)
Why didn't I think about that