Subscribe:

Ads 468x60px

Pages

Tuesday, June 28, 2011

Web Farm vs Web Garden

                                                    WEB FARM
                                                   WEB GARDEN

Web application hosted on multiple server and access based on the load on servers is called Web Farms and When a single Application pool contain multiple Worker process is called web garden.
(web farm terjadi bila multiple client request a resources dari server yg sama)
(web garden terjadi apabila application pool mengandungi banyak worker process)

Advantages of Web Farm
  • It provides high availability. If any of the server in the farm goes down, Load balancer can redirects the requests to other servers.
  • Provides high performance response for client requests.
  • Provides Better scalability of the web application and reduce the failure of application.
  • Session and other resource can be stored in a centralized location to access by the all server.
Advantages of Web Garden:
  • provides better application availability by sharing request between multiple worker process.
  • Web garden use processor affinity where application can swapped out based on preference and tag setting.
  • Less consumption of physical space for web garden configuration.

0 comments: