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: ```mermaid 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; ```
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: