Consider processing even faster requests with async queries.
To do so, check that :
- If too much requests are done with the same token, will all the sent requests, after the API rate limited the token, be refused ? If so, async is a bad idea.
- Or will it only just accept requests until the rate limit is reached, like synchronous requests ?
Consider processing even faster requests with async queries.
To do so, check that :