What is a proper way to modify and upload multiple large images #14983
Unanswered
ja-klaudiusz
asked this question in
Help
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Here's what I have to do:
I have no problems with points 2 and 3. The problem is with point 1.
I am looking for a good way to temporarily store files in the browser memory. I tried two ways:
A. App state
B. IndexedDB
There are pros and cons to these two solutions.
Point A - access to data is fast but large amounts of data sometimes cause the browser crash.
Point B - the data is secure but loading into IndexedDB takes a long time and takes up additional space on the device.
Maybe you know better ways to store files temporarily and permanently in browser's memory?
Beta Was this translation helpful? Give feedback.
All reactions