imnotteixeira / dissertation

0 stars 0 forks source link

[Paper] Research on offline storage of web page #48

Closed imnotteixeira closed 3 years ago

imnotteixeira commented 3 years ago

https://www.scopus.com/record/display.uri?eid=2-s2.0-84896841511&origin=resultslist&sort=plf-f&src=s&st1=&st2=&sid=9a5e3968d2b98993262c5396ac215774&sot=b&sdt=b&sl=39&s=TITLE-ABS-KEY+%28HTML5+local+storage+api%29&relpos=4&citeCnt=0&searchTerm=

Offline storage technology has many uses in the Web application and it can store the user status, cache data, temporary data, and persistent data and so on. In this paper several typical web client storage technologies are discussed and it includes the IE browser's unique storage technology User Data, local Storage and session Storage of HTML5, Web SQL Databases, Indexed Database, as well as classic storage technology Cookie and so on. Their concrete using methods are explained and their individual strengths and differences are compared. Their respective applications occasions and some issues that need attention are discussed. The general cross-browser offline storage method is presented and it can use the same application programming interface to complete different browser offline storage technologies. © (2014) Trans Tech Publications, Switzerland.

imnotteixeira commented 3 years ago

Discusses multiple web client storage technologies.

localStorage and sessionStorage are used in the same way, but sessionStorage only lasts until the browser is closed, whereas the localStorage persists to future browsing sessions.

localStorage is the most compatible among web browsers.

In general/summary: