HTML5 Local storage vs. Session storage

后端 未结 10 2411
甜味超标
甜味超标 2020-11-22 03:16

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?

10条回答
  •  野性不改
    2020-11-22 03:50

    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

提交回复
热议问题