vote up 60 vote down star
39

We all know that premature optimization is the root of all evil because it leads to unreadable/unmaintainable code. Even worse is pessimization, when someone implements an "optimization" because they think it will be faster, but it ends up being slower, as well as being buggy, unmaintainable, etc. What is the most ridiculous example of this that you've seen?

flag
show 3 more comments

36 Answers

prev 1 2
vote up 123 vote down

I think the phrase "premature optimization is the root of all evil" is way, way over used. For many projects, it has become an excuse not to take performance into account until late in a project.

This phrase is often a crutch for people to avoid work. I see this phrase used when people should really say "Gee, we really didn't think of that up front and don't have time to deal with it now".

I've seen many more "ridiculous" examples of dumb performance problems than examples of problems introduced due to "pessimization"

  • Reading the same registry key thousands (or 10's of thousands) of times during program launch.
  • Loading the same DLL hundreds or thousands of times
  • Wasting mega bytes of memory by keeping full paths to files needlessly
  • Not organizing data structures so they take up way more memory than they need
  • Sizing all strings that store file names or paths to MAX_PATH
  • Gratuitous polling for thing that have events, callbacks or other notification mechanisms

What I think is a better statement is this: "optimization without measuring and understanding isn't optimization at all - its just random change".

Good Performance work is time consuming - often more so that the development of the feature or component itself.

link|flag
4  
"Premature" is the key word of that quote. Your rephrasing it to "optimization without measuring and understanding" doesn't seem to change the meaning one bit. That is precisely what Knuth meant. – Bill the Lizard Nov 23 '08 at 3:52
6  
@Foredecker: right on. Too many people forget the context, which puts that quote solidly against *micro*-optimization. Analyzing a problem to pick the proper algorithm before implementing it isn't premature, yet too often that quote gets thrown up to justify the laziest, most inefficient solution. – Shog9 Nov 23 '08 at 16:30
1  
-1: There's a difference between "optimization" and proper design. For those who can't tell, a good rule of thumb is that an "optimization" makes the code tougher to read, but faster or more efficient. A better design will make the code easier to read (or at least no worse) and more efficient. – T.E.D. Mar 26 at 20:43
show 14 more comments
vote up 11 vote down

I once worked on an app that was full of code like this:

 1 tuple *FindTuple( DataSet *set, int target ) {
 2     tuple *found = null;
 3     tuple *curr = GetFirstTupleOfSet(set);
 4     while (curr) {
 5         if (curr->id == target)
 6             found = curr;
 7         curr = GetNextTuple(curr);
 8     }
 9     return found;
10 }

Simply removing found, returning null at the end, and changing the sixth line to:

            return curr;

Doubled the app performance.

link|flag
1  
A return curr here produces notably different behavior. When you return curr you end up getting the FIRST match, where as the code you pasted returns the LAST match. – SoapBox Nov 28 '08 at 1:08
1  
This has nothing to do with a coding standard and everything to do with a coding bug. Sure a return would have worked, but adding a couple of curly braces and a break statement would also have worked. – jussij Feb 19 at 4:44
show 10 more comments
vote up 8 vote down

This might be at a higher level that what you were after, but fixing it (if you're allowed) also involves a higher level of pain:

Insisting on hand rolling an Object Relationship Manager / Data Access Layer instead of using one of the established, tested, mature libraries out there (even after they've been pointed out to you).

link|flag
show 5 more comments
vote up 70 vote down

Databases are pessimization playland.

Favorites include:

Split a table into multiples (by date range, alphabetic range, etc.) because it's "too big".

Create an archive table for retired records, but continue to UNION it with the production table.

Duplicate entire databases by (division/customer/product/etc.)

Resist adding columns to an index because it makes it too big.

Create lots of summary tables because recalculating from raw data is too slow.

Create columns with subfields to save space.

Denormalize into fields-as-an-array.

That's off the top of my head.

link|flag
show 8 more comments
vote up 32 vote down

I have seen people using alphadrive-7 to totally incubate CHX-LT. This is an uncommon practice. The more common practice is to initialize the ZT transformer so that bufferication is reduced (due to greater net overload resistance) and create java style bytegraphications.

Totally pessimistic!

link|flag
3  
That seems perfectly cromulent to me. – Bill the Lizard Nov 23 '08 at 2:24
2  
maybe they were trying to embiggen the flux capacitor – Mikeage Mar 26 at 10:55
3  
+1 because my monitor needed cleaning anyway ;-) – RBerteig Mar 26 at 21:00
show 3 more comments
vote up 32 vote down

Nothing Earth-shattering, I admit, but I've caught people using StringBuffer to concatenate Strings outside of a loop in Java. It was something simple like turning

String msg = "Count = " + count + " of " + total + ".";

into

StringBuffer sb = new StringBuffer("Count = ");
sb.append(count);
sb.append(" of ");
sb.append(total);
sb.append(".");
String msg = sb.toString();

It used to be quite common practice to use the technique in a loop, because it was measurably faster. The thing is, StringBuffer is synchronized, so there's actually extra overhead if you're only concatenating a few Strings. (Not to mention that the difference is absolutely trivial on this scale.) Two other points about this practice:

  1. StringBuilder is unsynchronized, so should be preferred over StringBuffer in cases where your code can't be called from multiple threads.
  2. Modern Java compilers will turn readable String concatenation into optimized bytecode for you when it's appropriate anyway.
link|flag
1  
@Eric: String msg = "Count = " + count + " of " + total + "."; is often compiled in Java to String msg = new StringBuffer().append("Count").append(count).append(" of ").append(total).append(".").toString(); ... which is precisely what the second example does. – Grant Wagner Mar 26 at 21:35
show 16 more comments
prev 1 2

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.