Search Results

1
vote

How well does .NET scale?

It all boils down to 3 things: How well is the application planned What was the initial scale goal of the person who built it Ongoing work in the pits to improve and …
0
votes

Good Book on Scaling Asp.Net applications

The best book I've ever read regarding scaling web application is not a Asp.Net one, but is a must for all you web architects out there - …
0
votes

Is there an easy way to scale a ‘views’ or ‘download’ counter in a DB row?

I'd consider doing one of the following: Use a buffer within the application and batch write a set of views every time buffers gets full Using a local logging file and aggreg …
2
votes

What are the key factors that ensure successful ASP.NET application scalability?

These are our internal ASP.Net Do's and Don't Do's for massively visited web applications: General Guidelines Don't use Sessions - SessionState=Off Disable ViewStat …