My current code sends async requests to a api and parses the json response as soon as it gets it preventing a new request of being send until its fully parsed. the json is pretty big and it takes a while to parse it.
Should i parse everything at the same time as soon as it does get the content of all pages or what other options do I have?