What is the difference between webgarden and webfarm?

Answer Posted / 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       View All Answers


Please Help Members By Posting Answers For Below Questions

What is nameof c#?

489


How do you declare an interface in c#?

488


Explain the three test cases in unit testing?

594


I wish to create a windows application to perform a similar function as that of the "Search" which is provided to look for related files and folders in the System.. What steps must i follow??

1534


What are the types of assembly available

513






What is a delegate? Explain.

538


Why do we use dataset in c#?

490


What is property in c#?

538


What floating point types is supported in C#?

594


What are virtual classes in c#?

534


Why should you override the tostring() method?

597


What are the principles of delegation?

490


What framework is used for performance testing/load testing?

1482


How to achieve polymorphism in c#?

545


What is escape character in c#?

512