When starting a new ASP.NET application, with the knowledge that at some point in the future it must scale, what are the most important design decisions that will allow future scalability without wholsesale refactoring?
|
2
|
|
|
|
|
|
My Top three decisions are
You could also look at partitioning data in the database too. I have to admit though I do this regardless of whether the site has to scale or not. |
|||
|
|
|
Ensure you have a solid caching policy for transient / static data. Database calls are expensive especially with separate physical servers so be aggressive with your caching. |
||
|
|
|
|
There are so many considerations, that one could write a book on the subject. In fact, there is a great book and it is free. ;-) Microsoft has released Improving .NET Application Performance and Scalability as a PDF eBook. It is worth reading cover to cover, if you don't mind the droll writing style. Not only does it identify key performance scenarios, but also establishing benchmarks, measuring performance, and how to apply what you learn. |
||||||
|
|
|
These are our internal ASP.Net Do's and Don't Do's for massively visited web applications: General Guidelines
Application Architecture
Above all, learn from others successes and failures and stay positive. |
||
|
