I'm trying figure out what the best strategy is for dealing with large datasets in JavaScript. I have files with four hours of data read at a 100ms interval.
This turns into a one dimensional array, however I can't get the thing to load all at once. Should I try splitting it into smaller arrays and is there an optimal array size?
Any advice would be appreciated, this is the first time I've had to deal with this type of problem. Some of the arrays are only 500kb but they still won't load as single module exports. Does AJAX work better for some reason? If so why?