Cache Storage vs IndexDB for short lived data
I need to handle a 500MB file upload where the user may be redirected to a login page and later return to resume the upload. To store the file temporarily, options like IndexedDB or CacheStorage seem viable, but they may have limitations with large files and short-lived data. The FileSystemAccess API was considered but isn’t widely supported across browsers. What is the best solution for this use case?”
Cache Storage vs IndexDB for short lived data
I need to handle a 500MB file upload where the user may be redirected to a login page and later return to resume the upload. To store the file temporarily, options like IndexedDB or CacheStorage seem viable, but they may have limitations with large files and short-lived data. The FileSystemAccess API was considered but isn’t widely supported across browsers. What is the best solution for this use case?”