You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Dataloader library allows to cache requests which would normally lead to a huge "load",
Typical example:
loading the Twitter follower's followers which would lead to loading some followers more than one time, even while it was already fetched, e.g.
Follower X -> follows Y and
follower Y also follows X
-> here we want to optimize it to only fetch X and Y once.
Dataloader library allows to cache requests which would normally lead to a huge "load",
Typical example:
loading the Twitter follower's followers which would lead to loading some followers more than one time, even while it was already fetched, e.g.
Follower X -> follows Y and
follower Y also follows X
-> here we want to optimize it to only fetch X and Y once.
See https://github.com/facebook/dataloader
The text was updated successfully, but these errors were encountered: