I was looking for some clarification really. Looking at the W3Schools documentation on localStorage
and sessionStorage
, they write:
Local storage is per origin (per domain and protocol). All pages, from one origin, can store and access the same data.
Does this mean that if I have multiple web front ends, and my load balancer is not using sticky sessions, that the data I store with the sessionStorage
object may not be accessible, dependent upon which WFE serves the data?
Just a little unclear, and it's difficult to test. Many thanks!