0

please explain how to get high capacity architectures with both the default asp.net web forms and mvc models with regard to being able to serve millions of page views.

i want to know how to set up each model from DB clustering, to caching, logical/ physical tiers, load balancing iis servers, scaling out or up, session state management and so on...

is one more scalable than the other?

thanks all.

kacalapy
  • 9,806
  • 20
  • 74
  • 119
  • Short answer: nope, none is intrinsically more scalable. See http://stackoverflow.com/questions/1035642/asp-net-mvc-vs-webforms-speed-and-architecture-comparison – Mauricio Scheffer May 06 '10 at 02:13

1 Answers1

0

There is no one answer. A good option is to check the architectures for some respected Open source projects to see what other people are doing.

ravi
  • 949
  • 11
  • 22
  • can you have mvc on the same architecture as webforms? that is to say with iis nodes, maybe a separate server for business objects and DB servers? – kacalapy May 06 '10 at 03:29