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
{{ message }}
This repository has been archived by the owner on Apr 11, 2023. It is now read-only.
I am developing mobile app based on Phonegap / Cordova. Sometimes there is lack of internet connection. This plugin works fine on that situation, but sometimes there is problem with localStorage (throws QuotaExceededError if length exceeds about 5 MB - it is browser specific thing). Probably that storage in Webwiev is not efficent as expected. Maybe it would be better using WebSQL with Persistence.js - we can set its capacity up to 50MB.
The text was updated successfully, but these errors were encountered:
Yes, you are correct that localstorage is full. You can either work on efficiency or use an IndexedDB (or deprecated WebSQL) backend instead. See #149 (comment) and #73 on how to use other backends with this library.
I am developing mobile app based on Phonegap / Cordova. Sometimes there is lack of internet connection. This plugin works fine on that situation, but sometimes there is problem with localStorage (throws QuotaExceededError if length exceeds about 5 MB - it is browser specific thing). Probably that storage in Webwiev is not efficent as expected. Maybe it would be better using WebSQL with Persistence.js - we can set its capacity up to 50MB.
The text was updated successfully, but these errors were encountered: