We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
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;
The text was updated successfully, but these errors were encountered:
Androz2091
No branches or pull requests
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:
The text was updated successfully, but these errors were encountered: