In this Electron issue, @zcbenz commented:
We have the same size limitation with Chrome browser, which is '1/3 of the of available disk space'.
That response was from early 2016.
I've run this code:
const estimation = await navigator.storage.estimate();
console.log(`Quota: ${estimation.quota}`);
console.log(`Usage: ${estimation.usage}`);
and it tells me that I have 100% of my free disk space as my quota, so I'm confused and can't find anything more recent than the 2016 comment, that is also Electron-specific.
So my questions:
- Has this officially changed?
- What happens if you attempt to exceed that limit (assuming it's not really 100% of free space)?
- Will Electron/Chromium ever evict your data?
--- Electron v3.0.4