“The Past, Present, and Future of Local Storage for Web Applications”

This is about the advantageous differences between local storage and web application storage. The differences being that local storage have options of storing informations in the following manner:

Web applitions only option is to store data as cookies which have downsides:

Local storage before HTML5

Before HTML came about userData allows web pages to store up to 64 KB of data per domain.

Here’s HTML5!!

What is HTML5 storage?

It’s a way for web pages to store named key/value pairs locally, within the client web browser. Like cookies, this data persists even after you navigate away from the web site, close your browser tab, exit your browser, or what have you. HTML5 storage is more secure. Some refers to it as Local Storage or DOM Storage. It does support the folowing browsers:

HTML5

The future of HTML5

Currenly the future looks good for HTML5 but there is more to life than “5 megabytes of named key/value pairs,” and the future of persistent local storage and there are competing visions. One vision is SQL. In 2007, Google launched Gears, an open source cross-browser plugin which included an embedded database based on SQLite. This influenced the creation of the Web SQL Database. Web SQL Database (formerly known as “WebDB”) provides a thin wrapper around a SQL database, allowing you to store code from JavaScript.