I am facing the following situation, which to my surprise, I couldn't find much documentation: There is a service which only provides a rest call for item details, by obtaining it 1 by 1. There are 1k+ items in total.
For responsiveness reasons, I would like to persist this data on my end, and not fetch it lazily.
In order for my API key to not be locked, I would like to limit my calls to X calls / second.
I could not find any support for this in the Feign documentation. Does anybody know if there is one? Or do you have any suggestions on how to go about this implementation?