Speed Comparisons - Procedural vs. OO in interpreted languages - Stack Overflow most recent 30 from stackoverflow.com 2009-12-08T16:11:51Z http://stackoverflow.com/feeds/question/3057 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/3057/speed-comparisons-procedural-vs-oo-in-interpreted-languages 0 Speed Comparisons - Procedural vs. OO in interpreted languages cmcculloh 2008-08-06T03:34:01Z 2008-09-22T18:18:17Z <p>In interpreted programming languages, such as PHP and JavaScript, what are the repercussions of going with an Object Oriented approach over a Procedural approach?</p> <p>Specifically what I am looking for is a checklist of things to consider when creating a web application and choosing between Procedural and Object Oriented approaches, to optimize not only for speed, but maintainability as well. Cited research and test cases would be helpful as well if you know of any articles exploring this further.</p> <p>Bottom line: how big (if any) is the performance hit really, when going with OO vs. Procedural in an interpreted language?</p> http://stackoverflow.com/questions/3057/speed-comparisons-procedural-vs-oo-in-interpreted-languages/3059#3059 2 Answer by Mark Harrison for Speed Comparisons - Procedural vs. OO in interpreted languages Mark Harrison 2008-08-06T03:35:31Z 2008-08-06T03:42:09Z <p>Bottom line: no, because the overhead of interpretation overwhelms the overhead of method dispatching.</p> http://stackoverflow.com/questions/3057/speed-comparisons-procedural-vs-oo-in-interpreted-languages/3062#3062 8 Answer by lbrandy for Speed Comparisons - Procedural vs. OO in interpreted languages lbrandy 2008-08-06T03:36:28Z 2008-08-06T03:36:28Z <p>Maybe I'm crazy but worrying about speed in cases like this using an interpretive language is like trying to figure out what color to paint the shed. Let's not even get into the idea that this kind of optimization is entirely pre-mature.</p> <p>You hit the nail on the head when you said 'maintainability'. I'd choose the approach that is the most productive and most maintainable. If you need speed later, it ain't gonna come from switching between procedural versus object oriented coding paradigms inside an interpreted language.</p> http://stackoverflow.com/questions/3057/speed-comparisons-procedural-vs-oo-in-interpreted-languages/3068#3068 1 Answer by Justin Standard for Speed Comparisons - Procedural vs. OO in interpreted languages Justin Standard 2008-08-06T03:49:20Z 2008-08-06T03:49:20Z <p>If you are using an interpreted language, the difference is irrelevant. You should not be using an interpreted language if performance is an issue. Both will perform about the same.</p> http://stackoverflow.com/questions/3057/speed-comparisons-procedural-vs-oo-in-interpreted-languages/28984#28984 0 Answer by dwestbrook for Speed Comparisons - Procedural vs. OO in interpreted languages dwestbrook 2008-08-26T20:01:09Z 2008-08-26T20:01:09Z <p>I've actually done a small test like this in python on a website I maintain and found that they are almost equivalent in speed, with the procedural approach winning by something like ten-thousandths of a second, but that the OO code was so significantly cleaner I didn't continue the exercise any longer than one iteration.</p> <p>So really, it doesn't matter (in my experience anyway).</p> http://stackoverflow.com/questions/3057/speed-comparisons-procedural-vs-oo-in-interpreted-languages/116559#116559 0 Answer by Jon Clegg for Speed Comparisons - Procedural vs. OO in interpreted languages Jon Clegg 2008-09-22T18:18:17Z 2008-09-22T18:18:17Z <p>Your performance will be characterized by the implementation, not the language. You could use the slowest language and it could scale to be the biggest site in the world as long as you design it to scale.</p> <p>Just remember the first rule of optimiztion. </p> <p>Don't.</p> <p>:)</p>