So i wanna scrape a site, but I don't want to do 200 requests at once, maybe 5.
for (i=0; i<=200; i++) {
asyncFunction() // I want to limit this, so only 10 functions re gettibg called per time
}
So i wanna scrape a site, but I don't want to do 200 requests at once, maybe 5.
for (i=0; i<=200; i++) {
asyncFunction() // I want to limit this, so only 10 functions re gettibg called per time
}