A web application runs on a single server that has multiple cpus is called webgarden.
A web application running on multiple servers is called a webfarm.
In both webfarms and web gardens client requests are redirected to asp.net process that is currently busy that means a single client can interact with the different servers over the course of his or her session.
Session state variables are by default stores inproc(within server memory) state by default..
2 built in ways to share session state information across webgarden or web farm.
1.StateServer : Simple to implement and does not require to install sql server
2.Sql Server
A web application running on multiple servers is called a webfarm.
In both webfarms and web gardens client requests are redirected to asp.net process that is currently busy that means a single client can interact with the different servers over the course of his or her session.
Session state variables are by default stores inproc(within server memory) state by default..
2 built in ways to share session state information across webgarden or web farm.
1.StateServer : Simple to implement and does not require to install sql server
2.Sql Server
No comments:
Post a Comment