Hacker News new | ask | show | jobs
by sadiq 6583 days ago
If speed of execution is a key requirement, beyond C++ and some good programmers, your main options are Java and C#.

I use Java with Struts on Tomcat for a couple of projects and it's served me well.

3 comments

I was thinking that too, but perhaps he means 'execution' in the more generic sense of creating a product quickly?

In any case, even with a slow scripting language like Ruby, if the speed of the language is a concern, perhaps that part of the application should just be farmed out to a library in C (or a separate process in whatever language). Need more info, though.

I'm the Ops Co-founder. True C like languages are faster, but we don't need quite that much speed. nothing Scientific, or really mission critical. I mostly want the code to run faster vs ease of coding. So if the app was going to take longer running in php than python, but faster to code, I would still want python.
Agree. Speed of execution != scripting language.