-
Notifications
You must be signed in to change notification settings - Fork 5
Open
Labels
enhancementNew feature or requestNew feature or request
Description
Because of rate limiting in https://github.com/dumpus-app/dumpus-api#fetch-a-package-user, I'm basically spamming until I get the data.
It would be awesome to cache this data server side like so:
graph LR;
A["Request data"]-->B;
B["Cached data"]--Yes-->C;
B--No-->D["Fetch data"];
C["Data is available"]-->E["Response"];
C-->D;
F["Store"]-->E;
D-->G["Rate limiting"];
G--Yes-->D;
G--No-->F;
Metadata
Metadata
Assignees
Labels
enhancementNew feature or requestNew feature or request