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
We've measured mainnet using chromium and firefox. There seem to be a big difference between those 2 browsers, firefox storage usage is a few times bigger. They use different databases under the hood, firefox goes with sqlite and chromium uses leveldb.1 hour of syncing + dasing:
chrome: ~35.7MB, ~103x103 square
firefox: ~178MB, ~107x107 square24 hours of syncing + dasing:
chrome: ~825.5MB, ~93x93 square
firefox: ~3.6GB, ~93x93 square1h but without storing signatures and validator set:
chrome: ~19.4MB, -45%
firefox: ~87.5MB, -50%
The text was updated successfully, but these errors were encountered:
There's a huge discrepancy between firefox and chrome indexeddb disk usage. We should re-check all available solutions and see if there's something that works better than idb
Lumina in browser uses indexeddb api for persistent storage and our schema looks like this:headers table
header ranges table (has only 2 entries, one for daser, one for syncer)
sampling metadata table (stores cids that will need to be pruned):
blockstore table:
We've measured mainnet using chromium and firefox. There seem to be a big difference between those 2 browsers, firefox storage usage is a few times bigger. They use different databases under the hood, firefox goes with sqlite and chromium uses leveldb.1 hour of syncing + dasing:
chrome: ~35.7MB, ~103x103 square
firefox: ~178MB, ~107x107 square24 hours of syncing + dasing:
chrome: ~825.5MB, ~93x93 square
firefox: ~3.6GB, ~93x93 square1h but without storing signatures and validator set:
chrome: ~19.4MB, -45%
firefox: ~87.5MB, -50%
The text was updated successfully, but these errors were encountered: