So I have a large (and I mean absolutely enormous) object that I'm grabbing with curl through php (curlopt), and normally I'd json_decode it into an object (or json_decode true for an array), but it's so enormous that I can't actually fit it all in memory, and need to do it piecemeal.
But how do I do this, exactly? I can limit the depth, but this is a pretty breadthy json object, so it doesn't do too much to help. (And I do eventually need to trawl all the information in this object, so not sure what to do there)
Any thoughts?