Very simplified example: ```for (i in 0..70000) { ...
# kotlin-fuel
j
Very simplified example:
Copy code
for (i in 0..70000) {
        “/get/$i”.httpGet().responseString { request, response, result -> 
            // Do Something
        }
    }
h
I once had similar requirement and I batch the input into n chunks where n is the expected maximum of concurrent process
I mean divide your 70k into n chunk first