Will pulling a lot of data using Simultaneous AJAX Requests cause the API to Stop my Key?

Avatar image for ethanny2
ethanny2

5

Forum Posts

0

Wiki Points

0

Followers

Reviews: 0

User Lists: 0

#1  Edited By ethanny2

Essentially I want to pull all the games and use it for an application, but I don't want to make the AJAX call everytime the page is refreshed so I want to cache it locally in the browser, but with the maximum results being limited to 100 that would mean I would need ~550 Ajax calls to get all the games, and load time is almost 45mins. (One call being ~5secs) So if I do Simultaneous AJAX Requests (meaning they are not 1 second apart) will I my pulling rate be limited? Or is there a better way to do this?

EDIT: I could try to use near simultaneous AJAX calls but precisely space them 1 second apart by using the Javascript Timing Events. (I will try that )