Reputation: 2946
I am researching the best way to implement a local storage html5/js (offline) solution to store web application data.
A few concerns I have:
So basically I have a ton of data that I need to be able to store on an offline webkit device and I'm looking for the best solution to manage all of it. Thanks!
Upvotes: 1
Views: 2135
Reputation: 528
Three thousand items (especially if many of the items are photos) is a lot for offline storage the way devices currently handle it.
Check these resources for how to handle HTML5 offline storage...
http://diveintohtml5.ep.io/offline.html
http://hacks.mozilla.org/2010/01/offline-web-applications/
Also see the latest file handling API stuff in Google Chrome. Truly awesome "what's coming" resource. http://www.htmlfivewow.com
Upvotes: 2