3
Shouts

Sharing memory session between servers - .NET Development - Gal Ratner

published 357 days, 15 hours, 41 minutes ago posted by galratnergalratner 358 days, 59 minutes ago
Thursday, June 02, 2011 5:51:24 AM GMT Wednesday, June 01, 2011 8:33:08 PM GMT

Session variables hold per user information. Unlike cookies, sessions store information on the server rather than on the client. The client holds a session cookie with the client’s session ID and at the time of an HTTP request, the server accesses the client’s session ID and retrieves the session data.

The default implementation of session has the web server holding the information in memory. This implementation as fast as it is has some drawbacks: Recycling your app pool or restarting IIS will abando...

category: ASP.NET | clicked: 16 | | source: galratner.com | show counter code
tags: session mode