As of April 12th, you must go to Progress SupportLink to create new support cases or to access existing cases. Please, bookmark the SupportLink URL and use the new portal to contact the support team.
trying to figure out just how much data I can store locally on the device with Kinvey's offline IndexedDB implementation?? Playing around with the idea of just making my icenium app work offline for the majority of the time and then just sync at regular intervals or maybe just on login/logout, etc
but I've got the potential to have a fair amount of data to store locally so...didn't want to run up against a limit and be sad down the line ;) Really just trying to figure out a strategy also to determine paging logic based on any type of limit I'll be faced with
I was wondering this too. There doesnt seem to be any obvious "cleaning up" of old offline data..... which means that over time that the offline data store just gets larger and larger (and older and older). Hence I am also wondering if this is something we have to manage - or whether we can leave the library functions to handle clean up when the size limit (whatever that is) is neared.
M
Mark
said
over 9 years ago
For storage limits on Firefox see [here](https://developer.mozilla.org/en/docs/IndexedDB#Storage_limits), for Google [here](https://developers.google.com/chrome/whitepapers/storage#temporary).
The library internally doesn’t clean up old data. You can, however, remove the entire database if you want. See [here](http://devcenter.kinvey.com/guides/caching-offline#ClearingtheCache).
O
OhmzTech
said
over 9 years ago
Does anyone know if iOS still caps at 50MB for non-native implementation?
Ryan Day
but I've got the potential to have a fair amount of data to store locally so...didn't want to run up against a limit and be sad down the line ;) Really just trying to figure out a strategy also to determine paging logic based on any type of limit I'll be faced with