Speed Comparisons - Procedural vs. OO in interpreted languages - Stack Overflow most recent 30 from stackoverflow.com2009-12-08T16:11:51Zhttp://stackoverflow.com/feeds/question/3057http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/3057/speed-comparisons-procedural-vs-oo-in-interpreted-languages0Speed Comparisons - Procedural vs. OO in interpreted languagescmcculloh2008-08-06T03:34:01Z2008-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#30592Answer by Mark Harrison for Speed Comparisons - Procedural vs. OO in interpreted languagesMark Harrison2008-08-06T03:35:31Z2008-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#30628Answer by lbrandy for Speed Comparisons - Procedural vs. OO in interpreted languageslbrandy2008-08-06T03:36:28Z2008-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#30681Answer by Justin Standard for Speed Comparisons - Procedural vs. OO in interpreted languagesJustin Standard2008-08-06T03:49:20Z2008-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#289840Answer by dwestbrook for Speed Comparisons - Procedural vs. OO in interpreted languagesdwestbrook2008-08-26T20:01:09Z2008-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#1165590Answer by Jon Clegg for Speed Comparisons - Procedural vs. OO in interpreted languagesJon Clegg2008-09-22T18:18:17Z2008-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>