Apart from being non persistent and scoped only to the current window, are there any benefits (performance, data access, etc) to Session Storage over Local Storage?
-
20@robert - I believe you're incorrect. From http://www.w3.org/TR/webstorage/ sessionStorage is scoped to the "top-level browsing context", meaning it is unique to each browser tab / window. localStorage is scoped to the origin, however, meaning it's shared across all pages on the same origin. – broofa Jul 26 '13 at 20:46
-
6Re: Performance http://jsperf.com/localstorage-vs-sessionstorage – colllin Jul 04 '14 at 04:16
-
6Possible duplicate of [What is the difference between localStorage, sessionStorage, session and cookies?](http://stackoverflow.com/questions/19867599/what-is-the-difference-between-localstorage-sessionstorage-session-and-cookies) – SW4 Oct 13 '15 at 21:13
11 Answers
localStorage and sessionStorage both extend Storage. There is no difference between them except for the intended "non-persistence" of sessionStorage
.
That is, the data stored in localStorage
persists until explicitly deleted. Changes made are saved and available for all current and future visits to the site.
For sessionStorage
, changes are only available per tab. Changes made are saved and available for the current page in that tab until it is closed. Once it is closed, the stored data is deleted.

- 6,709
- 13
- 37
- 58

- 20,629
- 3
- 39
- 57
-
20there's a broader discussion that you may find helpful here: http://stackoverflow.com/questions/19867599/what-is-the-difference-between-localstorage-sessionstorage-session-and-cookie – Ed Sykes Apr 27 '14 at 11:51
-
18if you save some data in storage under http, you will not be able to retrieve it at https – Mark Thien Jun 09 '14 at 09:52
-
i tested this on Chrome v41.x and it seems that the above statement about https is not true: localStorage retains its stored data. – CCC Apr 10 '15 at 19:02
-
55SessionStorage survives over page reloads and restores, but opening a new tab/window will initiate a new session. – Patrick Jun 26 '15 at 10:01
The only difference is that localStorage has a different expiration time, sessionStorage
will only be accessible while and by the window that created it is open. localStorage
lasts until you delete it or the user deletes it.
Lets say that you wanted to save a login username and password you would want to use sessionStorage
over localStorage
for security reasons (ie. another person accessing their account at a later time).
But if you wanted to save a user's settings on their machine you would probably want localStorage
. All in all:
localStorage
- use for long term use.
sessionStorage
- use when you need to store somthing that changes or somthing temporary

- 4,176
- 3
- 28
- 43
Few other points which might be helpful to understand differences between local and session storage
Both local storage and session storage are scoped to document origin, so
https://mydomain.example/ http://mydomain.example/ https://mydomain.example:8080/
All of the above URL's will not share the same storage. (Notice path of the web page does not affect the web storage)
Session storage is different even for the document with same origin policy open in different tabs, so same web page open in two different tabs cannot share the same session storage.
Both local and session storage are also scoped by browser vendors. So storage data saved by IE cannot be read by Chrome or FF.

- 23,933
- 14
- 88
- 109

- 1,932
- 1
- 14
- 14
-
3No, same sessionStorage share between http and https but localStorage not. – Shahdat Aug 26 '16 at 23:44
-
8If you set sessionStorage in https origin first, it will be available in http but if you create sessionStore in http then will not be available in http – Shahdat Aug 26 '16 at 23:51
-
6@Shahdat, did you mean "then will not be available in https" (notice the s)? – Daniel Werner May 23 '17 at 12:00
-
5@DanielWerner yes, if you create sessionStore in http then will not be available in https. – Shahdat May 23 '17 at 16:44
The main difference between localStorage
and sessionStorage
is that sessionStorage
is unique per tab. If you close the tab the sessionStorage
gets deleted, localStorage
does not. Also you cannot communicate between tabs :)
Another subtle difference is that for example on Safari (8.0.3) localStorage
has a limit of 2551 k characters but sessionStorage
has unlimited storage
On Chrome (v43) both localStorage
and sessionStorage
are limited to 5101 k characters (no difference between normal / incognito mode)
On Firefox both localStorage
and sessionStorage
are limited to 5120 k characters (no difference between normal / private mode )
No difference in speed whatsoever :)
There's also a problem with Mobile Safari and Mobile Chrome, Private Mode Safari & Chrome have a maximum space of 0KB
-
1
-
@Zze Yes, 1 character is usually 1 byte hence 5 million characters is 5Mb worth of storage. – Basim Khajwal Jan 07 '18 at 11:23
-
-
-
@Mukus, there is no source, I ran tests myself, and had an issue with Private Mode Safari for having localStorage but having no space there and my polyfill wouldn't trigger since localStorage existed, but the script failed since it couldn't store anything there. You can test too using this tool - http://dev-test.nemikor.com/web-storage/support-test/ – Eek Sep 19 '18 at 11:47
sessionStorage
is the same as localStorage
, except that it stores the data for only one session, and it will be removed when the user closes the browser window that created it.

- 2,931
- 7
- 27
- 39

- 627
- 6
- 13
sessionStorage
maintains a separate storage area for each given origin that's available for the duration of the page session (as long as the browser is open, including page reloads and restores)
localStorage
does the same thing, but persists even when the browser is closed and reopened.
I took this from Web Storage API

- 615
- 1
- 7
- 19

- 101
- 1
- 4
performance wise, my (crude) measurements found no difference on 1000 writes and reads
security wise, intuitively it would seem the localStore might be shut down before the sessionStore, but have no concrete evidence - maybe someone else does?
functional wise, concur with digitalFresh above

- 18,939
- 31
- 90
- 148
-
1regarding page load performance: Both, sessionStorage and localStorage are initiated and populated out of the page-load-render cycle. Therefore the toll on initial page load time is not measurable from within the browser. – Mirko Feb 02 '15 at 21:38
Ya session storage and local storage are same in behaviour except one that is local storage will store the data until and unless the user delete the cache and cookies and session storage data will retain in the system until we close the session i,e until we close the session storage created window.

- 71
- 1
- 5
The advantage of the session storage over local storage, in my opinion, is that it has unlimited capacity in Firefox, and won't persist longer than the session. (Of course it depends on what your goal is.)

- 61
- 1
- 4
Late answer but felt to add some points here.
Session storage will be available for specific tab where as we can use Local storage through out the browser. Both are default to same origin and we can also store values manually with key, value pairs (value must be string).
Once tab (session) of the browser is closed then Session storage will be cleared on that tab, where as in case of Local storage we need to clear it explicitly. Maximum storage limit respectively 5MB
and 10MB
.
We can save and retrieve the data like below,
To Save:
sessionStorage.setItem('id', noOfClicks); // localStorage.setItem('id', noOfClicks);
sessionStorage.setItem('userDetails', JSON.stringify(userDetails)); // if it's object
To Get:
sessionStorage.getItem('id'); // localStorage.getItem('id');
User user = JSON.parse(sessionStorage.getItem("userDetails")) as User; // if it's object
To Modify:
sessionStorage.removeItem('id'); // localStorage.removeItem('id');
sessionStorage.clear(); // localStorage.clear();
P.S: getItem()
also return back the data as string and we need convert it into JSON format to access if it's object.
You can read more about Browser Storages here..

- 5,808
- 2
- 21
- 41
Local storage: It keeps store the user information data without expiration date this data will not be deleted when user closed the browser windows it will be available for day, week, month and year.
//Set the value in a local storage object
localStorage.setItem('name', myName);
//Get the value from storage object
localStorage.getItem('name');
//Delete the value from local storage object
localStorage.removeItem(name);//Delete specifice obeject from local storege
localStorage.clear();//Delete all from local storege
Session Storage: It is same like local storage date except it will delete all windows when browser windows closed by a web user.
//set the value to a object in session storege
sessionStorage.myNameInSession = "Krishna";
Read More Click

- 4,366
- 2
- 39
- 46