I'm using a hosting provider that uses scalable web servers, aka I can scale from 1..n at the click of a button.
What I would like to do with my app is identify a single session of a person browsing my website, and store their state in a database.
Now because the host doesn't use a sticky session, the Session Id
which is what I would've used won't work, it may change from request to request.
What alternative identifier can I use that will identify a single user session and of course is secure?
(Just for clarity, I won't have a username or any data about the user.)