I have a situation where I am dealing with very large files and trying to encrypt them. I am running into a problem in the browser where the browser is running out of memory and so is crashing.
I was hoping to try and offload some of the larger objects/data to a local cache on disk to take these out of memory to help with this.
I've seen the CacheAPI which I thought may help, but this seems to only handle storing requests, whereas I am really dealing with arrays of bytes and objects that I want to store somewhere.
https://web.dev/cache-api-quick-guide/
Is there anything else I can use to support this, I need to support modern browsers so not IE.