You can actually have several session and, therefore, several sets of session variables from one computer. Just open another browser and connect to the application and you have another session.
I would not be concerned about how the server keep up with them; just know that you will never see the server give the wrong session variable to the wrong user.
Chad
Sessions are maintained through the use of cookies that hold a unique session id. When a person visits your site (and your site uses sessions), the response from the server will contain a cookie with a new session id that the browser will continue to send throughout the length of the person's visit.
Another user hitting the same page will get a response with a different session id cookie.
This ID is the indexer into the Session information on the server.
0 comments:
Post a Comment