id: 11873    nodeId: 11873    type: General    point: 41.0    linkPoint: 3.0    maker: cella    permission: linkable    made at: 2013.10.10 01:06    edited at: 2013.10.11 06:45
web client-side storage
web storage (aka. localStorage or DOM storage): light DB with size limit of 5MB or 10MB or 25MB per origin

Indexed Database API (aka. Indexed DB): no size limit but, not supported by every browsers yet

Web SQL Database: no size limit but, not supported by every browsers and not standard anymore


pros and cons of these approaches:
http://csimms.botonomy.com/2011/05/html5-storage-wars-localstorage-vs-indexeddb-vs-web-sql.html

another comparison:
http://www.html5rocks.com/en/tutorials/offline/storage/

Return to web client-side storage