What is the difference between webgarden and webfarm?



What is the difference between webgarden and webfarm?..

Answer / sri

After developing our asp.net web application we host it on
IIS Server. Now one standalone server is sufficient to
process ASP.NET Request and response for a small web sites
but when the site comes for big organization where there an
millions of daily user hits then we need to host the sites
on multiple Server. This is called web farms. Where single
site hosted on multiple IIS Server and they are running
behind the Load Balancer.This is the most common scenarios
for any web based production environment. Where Client will
hit an Virtual IP ( vIP) . Which is the IP address of Load
Balancer. When Load balancer received the request based on
the server load it will redirect the request to particular
Server.

All IIS Request process by worker process ( w3wp.exe). By
default each and every application pool contain single
worker process. But An application pool with multiple
worker process is called Web Garden. Many worker
processes with same Application Pool can sometimes provide
better throughput performance and application response
time. And Each Worker Process Should have there own Thread
and Own Memory space.

Is This Answer Correct ?    5 Yes 0 No

Post New Answer

More C Sharp Interview Questions

What are winforms in c#?

0 Answers  


What are the different types of constructors?

0 Answers  


What Is The Difference Between The System.array.copyto() And System.array.clone()?

0 Answers   Infosys,


What is the difference between ref and out in c#?

0 Answers  


Illustrate race condition?

0 Answers  






What does the initial catalog parameter define in the connection string?

0 Answers  


What are the Types of optimization and name a few and how do u do?

0 Answers   BirlaSoft,


What is COM Interoperability?

0 Answers   DELL,


Explain the difference between Metadata and Manifest

0 Answers   HCL,


write code for inserting and updating recoards in sql server database using connected architecture & records shoulds displayed in grid view ( use c# )

0 Answers  


if i want to transmit binary data,,,will it be support by Webservices or any exceptions ? define

2 Answers  


How to install or uninstall a windows service?

0 Answers  


Categories