Conversation
|
Hi @danmana, Thanks for the PR. I didn't want to leave this unattended too long — I've been busy outside of GitHub with the end of the semester rolling in. I've checked this out locally a bit and it's a great idea. Nice work implementing it — puts my The main issue I'm having is sometimes requests just don't get a response within Axios. Before, when I was dumping out all requests at once, I would just let it run until I there hadn't been any new responses & then Ctrl + C it. With this PR that logic wouldn't hold up since each batch of requests needs to resolve before the next one starts. The (seemingly) obvious solution to this would be to use the The bottom line is I'm not comfortable merging this in until I can figure out what's going on and make sure it works as expected. If you have any thoughts on the matter I'd love to hear. Thanks again. |
Execute requests in batches to avoid high memory/cpu usage.
axios.allexecutes all requests in parallel, which can take up a lot of memory