Is there a way to successfully download a large 400+ mb Json file using xmlhttprequest without encountering the dreaded Ah Snap message in Chrome due to its immense size?
One potential solution I've considered is implementing setInterval() to read the response text incrementally as it streams. However, I am unsure of how to effectively consume this data after each call to setInterval.
Alternatively, would utilizing a different web protocol entirely be a more viable option for handling such a large file?