Skip to content
New issue

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

Enhancement: cache user data #13

Open
florian-lefebvre opened this issue Jun 28, 2023 · 0 comments
Open

Enhancement: cache user data #13

florian-lefebvre opened this issue Jun 28, 2023 · 0 comments
Assignees
Labels
enhancement New feature or request

Comments

@florian-lefebvre
Copy link
Member

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;
Loading
@florian-lefebvre florian-lefebvre added the enhancement New feature or request label Jun 28, 2023
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement New feature or request
Projects
None yet
Development

No branches or pull requests

2 participants