I am experimenting with indexeddb, and have some data added to ObjectStore which should have 90 rows.
But I can see only 50 rows in Chrome development tools.
Is it Chrome that limits the rows, or my code is not adding more than 50 rows? For example:
for (var i=0; i< 100; i++){
var tmp = "data" + i;
store.put({question: tmp});
}
this code adds only 50 rows/data into store even though I am adding 100.
Thanks forward
It may be useful for storing small amounts of session specific information, for example an IndexedDB key. It should be used with caution because it is synchronous and will block the main thread. It is limited to about 5MB and can contain only strings.
IndexedDB on Chrome is fully supported on 23-106, partially supported on 11-22, and not supported on 4-10 Chrome versions. IndexedDB on Safari is fully supported on 10-16, partially supported on 7.1-14.1, and not supported on 3.2-7 Safari versions.
You can navigate through all items in the Chrome resource tab using the navigation controls on top of the screen. Please see the attached picture:
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With