batching tasks
I'm calling an api and get an array of 2000+ items. I want to chunk these into batches of 100 and then process them all concurrently.
I've tried
What's the best way to do this preferably without third party modules?
I've tried
BatchQueue but it looks like it stops after processing only the first batch. What's the best way to do this preferably without third party modules?
