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?
|
39
|
|
|
|
|
|
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"
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. |
||||||||||||
|
|
|
I once worked on an app that was full of code like this:
Simply removing
Doubled the app performance. |
||||||||
|
|
|
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). |
|||
|
|
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. |
|||
|
|
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! |
||||||||||||
|
|
|
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
into
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:
|
||||
|
