Storing and retrieving large amounts of data from IndexedDB. Warning -
this will load ~180mb of JSON from ~70 files.
-
Click
to
download 190mb of JSON and store it across 55 rows in IndexedDB
-
Click
. This will use
IDBObjectStore.getAll() to load all rows
from IndexedDB in one transaction
-
Click
-
Click
to load all rows from IndexedDB serially using
IDBObjectStore.getAllKeys() +
IDBObjectStore.get()
- On my computer Firefox takes ~9000ms, Chrome takes ~2000ms
-
Optionally,