Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Chrome shows only up to 50 rows of indexeddb table data

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

like image 425
amol01 Avatar asked Dec 08 '14 10:12

amol01


People also ask

How much data can store in IndexedDB?

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.

Which browser supports IndexedDB?

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.


1 Answers

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:

Chrome resource tab

like image 74
Deni Spasovski Avatar answered Sep 27 '22 20:09

Deni Spasovski