javascript - Buffering and using large amounts of data in a web browser -
i building web app take json formatted data containing positional information on things, , play video.
the data can considerably large (from 25mb 400mb). if building app using else i'd stream replay disk, far know i'm prevented doing (in cross-platform way) in browser.
currently i'm parsing data (it downloads in chunks) json objects , storing in array, causing issues huge memory usage , can crash browser in cases.
i'm looking way 'buffer' data on client , use needed, requirements being works on both latest stable firefox version , latest stable chrome version, both desktop.
is there way?
Comments
Post a Comment