How to store a huge amount of data in the browser cache

We are working on a medical viewer that transfers jpeg2000 images to browsers and displays in the image viewer. However, the number and size of images is very large, and often we need to play hundreds of megabytes of images. This means that we removed the restriction on the allowed cache by browsers. What parameters can I use, which will allow me to save a huge amount of temporary data on the client side?

The technology we use is HTML5 and javascript. We hope we can work with all modern browsers.

thanks.

+4
source share
1 answer

create a data object using javascript. This object can contain an array, and you can store your data in an array.

0
source

All Articles