You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I call that createFilesystem function before I render my app. If I have a large amount of data stored in IndexedDB, when the page loads it might be several seconds before the filesystem is usable.
Is there any recommendation for improving "perceived" performance when loading the filesystem with a large amount of data?
When my app loads for the first time, I only need to access files in one specific directory... is there any way to load just those files and lazy load / stream the rest? Or something else?? Thank you
The text was updated successfully, but these errors were encountered:
You can disable the preloading using disableAsyncCache. Please note that this will disable sync functions, but will also speed up loading times (perhaps down to only a few ms).
Hi, I am using the IndexedDB backend in a very simple configuration:
I call that
createFilesystem
function before I render my app. If I have a large amount of data stored in IndexedDB, when the page loads it might be several seconds before the filesystem is usable.Is there any recommendation for improving "perceived" performance when loading the filesystem with a large amount of data?
When my app loads for the first time, I only need to access files in one specific directory... is there any way to load just those files and lazy load / stream the rest? Or something else?? Thank you
The text was updated successfully, but these errors were encountered: