Reputation: 183
I was wondering if there is a way or any report which is showing IndexedDB the number of usage on desktop and mobile browser. Something like how many API calls are made. Just trying to figure if it is used widely or not. Additionally, if anyone knows what is the reason for not being used. Thanks in advance.
Upvotes: 0
Views: 306
Reputation: 14658
I was wondering if there is a way or any report which is showing IndexedDB the number of usage on desktop and mobile browser. Something like how many API calls are made.
No, there is no such official report or market survey published which can give you exact or even approximate market share information.
Just trying to figure if it is used widely or not.
At this point of time, as per available information, it is the future ahead.
W3C have few specifications for web or browser storage like WebSQL, IndexedDB, Web storage.
If you have to handle files (while is like client side file storage or file handling) then there is an API specs by W3C - File API. It’s possibly the best solution for generated binary data such as images, audio, video and PDFs.
So, you can use IndexedDB API for database storage and File API for file storage.
Upvotes: 1