Skip to content
Advertisement

Store large amount of data in Javascript

Im receiving some file chunks in bytes format from my server and im collecting them into one variable in my frontend to download it later. And I can’t change my server conception (receiving a file sliced into chunks).

My problem is that if the file is heavy (from 500MB), my variable length is starting to be very very big and im having an error :

JavaScript

This is because my variable has reach the limit of character (536 800 000).

Here’s how im adding my data to my variable :

JavaScript

My download part :

JavaScript

Which approach can I do ? Or does it exist some variable type in Javascript to accept more char ? Thanks

Advertisement

Answer

Don’t collect the chunks into a huge string. Instead, just convert each chunk into a bytearray immediately (that you’ll need later anyway) and collect these:

JavaScript

then

JavaScript

I don’t think you need to make 512-byte-sized slices.

User contributions licensed under: CC BY-SA
6 People found this is helpful
Advertisement