Scala – How much should I worry about scaling?

scalabilityweb-applications

I am planning to start a new web application from scratch, but I wonder if I am not obsessing too much over scalability. Should I worry about this since the beginning or is it better to focus on the application itself first and scale later if I happen to be really successful?

Best Answer

Generally speaking, its premature and distracting to worry about scalability to begin with for several reasons.

Solve a problem when you have a problem.

Worrying about scalability too early tends to delay you doing something for not much gain. Often you don't really understand the performance implications until something is used in the real world.

Related Topic