Thursday, May 24, 2012

Application State vs Session State

Application state variables:
The data stored in these variables is available to all the users i.e. all the active sessions.

Session state variables:
These are available to the single session who has created the variables.


Are Application state variables available throughout the current process?

Yes, Application state variables are available throughout the current process, but not across processes. If an application is scaled to run on multiple servers or on multiple processors within a server, each process has its own Application state.

No comments:

Post a Comment