Hacker News new | ask | show | jobs
by charlesju 6459 days ago
Maybe I'm slow but it seems to me that the language is never the bottleneck for web applications. It seems to me that the bottleneck is in the db which is language agnostic for all general purposes.

And anything that is slow with just Ruby can be solved by throwing money at it.

2 comments

Thoughtful and correct IMO. Caching is much more important to get right than backend-speed. Number crunching capability does not matter that much for web applications. And you can always outsource the tough calculations to languages better suited for it: ML, Common Lisp, C++, C, etc.
True I think another bottleneck would be the web server serving the pages. Albeit a distant one as compared to the DB. What I don't get here is what is everyone's obsession with speed and shootout contests. What gives? I think we as developers have to focus on the bigger picture.

To build apps that our users will love.

No matter the language, framework, or whatever. If we miss this point which is a very crucial point for that matter. Then all of our optimizations are for nothing.