I have a 50 MB size json file that I am calling with PHP and it takes ages to load. Is there a way to stream it better than fully load it to the memory ?
if yes, the Json contains 2D arrays like this :
[[x,y,z],[x,y,z],.....],[[x,y,z],[x,y,z],.....]
how to call 50 2D arrays each time ?
Also is there a more efficient way than using json please tell me. I am using a webscraping JS scripts to collect data from websites and save them in a json file.