Could any one explain me the difference between the Web Farm and Web Garden with some real time scenario?
Asked
Active
Viewed 7,762 times
0
-
possible duplicate of [What is the difference between Web farm and Web Garden?](http://stackoverflow.com/questions/1541860/what-is-the-difference-between-web-farm-and-web-garden) – Lukas Knuth Mar 12 '13 at 00:52
1 Answers
4
Web garden is when you have set many worker asp.net on the same machine (for the same web pages), Web farm is when you have many worker asp.net on the same web pages on different machines.
When you use web garder, you need to take care synchronization's on your program especial if you manipulate database.
When you use web farm you need to take care synchronization's of your database and take care about the view state to be the same on all machines.

Aristos
- 66,005
- 16
- 114
- 150
-
-
@afr0 To scalling up or out is depends from your program design and not by the server, except in the case that you only have simple pages and not a big complicate database program. – Aristos Jul 15 '15 at 08:14
-
a bit off topic though what do scaling up and out mean? i think i'm totally lost. – afr0 Jul 22 '15 at 11:31
-
@afr0 To add more computers and more process to help with the web pages requests – Aristos Jul 22 '15 at 14:55