Using multiple RateLimiters correctly. [Answered]
I'm wrapping an API which requires no more than 4 requests per second and 200 per hour, I've got a setup like this
this works well if you await each call of
the rate limiter seems to break, have I written this poorly or is this just an issue with concurrency in the library?
this works well if you await each call of
Test, however if you try something like this...the rate limiter seems to break, have I written this poorly or is this just an issue with concurrency in the library?