vote up 20 vote down star
9

Anyone who reads a lot of SO questions knows that the need to preach against premature optimization is not going away anytime soon - but what about the other extreme, the projects that fail or struggle because they did not consider performance early enough?

Should you just try and get a working system as quickly as possible so you can do performance tests, or are there some optimizations so essential that they should always be considered right from the beginning?

flag

79% accept rate
I think my answer should be accepted because its uber-clever – theman_on_vista Jan 29 at 20:15

18 Answers

vote up 35 vote down check

Algorithm and data structure must align with the problem. This isn't "optimization". This is "design".

Getting the right algorithm/data structure is central, essential and first.

Generally, you want to avoid or minimize search. This isn't optimization; this is simple design of a data structure that avoids search. Hash tables, trees, indexes, and what-not are design issues, not optimizations.

You want to avoid or minimize sort. This isn't optimization, either. This is simple design of the right algorithm to prepare the data in a way that doesn't require sorting. Trees, linked lists, priority queues, heaps, and what-not are design issues.

After you have prevented searching and sorting, there isn't much left that really eats up mountains of time. If you still have performance problems after preventing all searching and sorting, feel free to optimize what's left.

link|flag
I generally agree but, IMHO, it depends which data structures and algorithms. Those that are local within some short function can be easily changed later, those that effect how parts of the system interact must be considered beforehand. – Asaf R Jan 23 at 22:29
So, basically you're saying: optimization you can do up front is not optimization, it's a good design. I think I can live with that. A good design should be optimized for the problem at hand ;-) – Erik van Brakel Jan 23 at 22:46
@Asaf R: "Changed" doesn't really enter into it. Preventing search is simply fundamental, essential, core -- it's what good design is about. – S.Lott Jan 23 at 22:59
@Erik van Brakel: Actually, I'm making a stronger statement. Design (the stuff you do up front) is NOT "optimization". Optimization is something you do later to tweak up an appropriate design for the last bits of speed. – S.Lott Jan 24 at 3:53
Nice answer. But there are some other things that eat up mountains of time. For instance unecessary network traffic or nonsequential disk access as mentioned in other answers. – MarkJ Feb 3 at 21:00
show 3 more comments
vote up 10 vote down

Optimize immediately for readability and maintainability. Measure performance. Don't optimize for performance unless you have measurement and can tell in hard numbers what the effect of your optimizations are.

Edit: To add clarification:

  • There's nothing wrong with early performance optimization if it comes with early measurements. If you immediately see the need for performance optimization, it's part of the spec and testable (e.g. "must present result in 100ms for some given input")
  • If you have the choice of two equally readable/maintainable implementations: Choose the one that you like best - even on the basis of expected unjustified performance gains.
link|flag
vote up 6 vote down

Read C++ Optimizations You Can Do "As You Go" chapter in this useful reminder website.

And don't forget that you can have a good early optimization by choosing a good enough algorithm from the start. Make sure your algorithms are well encapsulated, to make a potential refactoring or algorithm change later easy.

link|flag
Great article! Writing fast code is often more about good habits rather than active optimizations, at least it makes the optimization phase much shorter. – Laserallan Jan 23 at 22:20
vote up 6 vote down

the "getting-it-to-work" optimization

link|flag
vote up 5 vote down

I personally agree with sleske's answer; a lot of software suffers from bad performance because nobody on the team sets performance goals (e.g., when the project starts, or as new features are conceived). For example, how fast do you want a particular action to take (from, say, the user's perspective)? 5 seconds? 1 second? Less? If you can't answer that question, you probably aren't going to end up with good performance in the end. For one thing, it's hard to set up systematic performance tests without any goals for them to measure against. At best, you'll have to engage in costly refactoring to finally achieve adequate performance (after, say, your customers complain enough, or your competitors come out with faster software).

More generally, there is a great article about optimization in the ACM's Ubiquity publication, The Fallacy of Premature Optimization. It is the best article I've read on this subject; the author makes great points and provides historical context. Here is an excerpt from the final summary:

Sir Tony Hoare's statement "We should forget about small efficiencies, say about 97% of the time: premature optimization is the root of all evil" has been responsible for a fundamental change in the way software engineers develop applications. A misinterpretation of this statement, particularly the clause "premature optimization is the root of all evil" has led many software engineers (and schools teaching new engineers) to believe that optimization and, indeed, concern about software efficiency, is unimportant. To reverse the decline in application performance, software engineers must first reject the prevailing attitude that performance is not important. Once they decide that writing efficient software is worthwhile, the next step is to learn how high-level language compilers and interpreters process those high-level constructs; once the engineer understands this process, choosing appropriate high-level constructs will become second nature and won't incur additional development cost. Hoare's statement, in its original context, certainly still applies. Premature optimization, at the microscopic level, is usually a bad idea. This does not suggest, however, that engineers should not be concerned about application performance. The fallacy that "premature optimization" is the same thing as "concern about performance" should not guide software development.

link|flag
1  
I'd upvote a million times if I could – HLGEM Aug 26 at 13:31
vote up 3 vote down

It may be best to view this in the light of things you should avoid, because they are universal performance-killers, and which are hard to change once implemented, because they become part of the application design.

Off the top of the head I can think of:

  • Avoid network round trips
  • Avoid nonsequential HD access
  • Use efficient algorithms and data structures whenever dealing with large volumes of data
  • Design your database carefully by normalizing enough to allow sensible queries but not so much that anything requires a dozen joins.
link|flag
These can be ordered in importance. Algorithms/data structures is first. Database design is the same thing, also first. Network round trips and disk optimizations are a distant second. Often these cannot be changed because of OS or Protocol. – S.Lott Jan 23 at 21:54
vote up 3 vote down

There probably is no single optimization trick that should always be done early. As always pointed out, any specific tricks should wait until you have analyzed your performance.

You should however, as S.Lott pointed out, consider performance in your design, from the first minute.

That does not mean any specific optimization, but planning your performance. Specifically, identify:

  • What are the performance requirements? (time per transaction, throughput etc.)
  • What is the expected problem / data size?
  • What hardware will we run on?

Then you should calculate a rough performance estimate. If that looks good, you're fine. If it looks like you will miss your performance goals, you should not continue to the next stage until you have a design that has at least a fighting chance of meeting the goals. Otherwise, you're setting yourself up for failure.

The idea is not to get a design that is guaranteed to perform well, but to avoid a design that cannot perform properly (as in "we'll just do everything in RAM", but the database has 2 TB). Any performance problems that you were unable to foresee that way can then be dealt with when they occur.

link|flag
vote up 3 vote down

Any optimization that you know with 100% certainty ahead of time will make a huge difference and won't complicate your code hugely. This actually includes more than you might think, but there's still not a lot of optimizations that fall into this category.

Update: One area that may need some planning is interaction with the database. In particular, you need to plan to query as much as you can as soon as you can if you're going to be doing a lot of queries. Making several small queries when you could instead be using one big query can be a huge performance drag, and it can cause some major architectural redesign if you don't design your architecture with this in mind. As always, your true milage may vary.

link|flag
vote up 2 vote down

Anything that affects high-level design. In practice, a big one tends to be reducing memory allocations, because without the ability to freely heap allocate, a lot of programming techniques are out the window at a design level. Also, if a data structure that's passed around a lot is hard to encapsulate in a way that hides the implementation you might want to make sure it's efficient early on.

link|flag
vote up 1 vote down

I would say if your are storing/searching any type of data, do the following:

  1. Determine the largest data set that your target customer/audience will ever use.
  2. Build a test data set that is twice as large as the theoretical maximum
  3. Make sure your application performs well on the test data set
link|flag
vote up 1 vote down

There are several trends that occur:

  • the more complex software is, the more complex it is to maintain and to restructure w/o introducing bugs
  • the more complete software is, the more constraints there are on its design (since you've made design choices that have consequences)
  • the more software is used by real customers, the more constraints there are on its design
  • the more constraints there are on software design, the harder it is to optimize
  • the more complete software is & the more use it gets by real customers, the more information you get on whether its performance is sufficient
  • the more software is used by real customers, the more money you/your company has (hopefully) to optimize performance later
  • the more time you take writing commercial software, the less likely it is to be profitable (because someone else has got there first, and/or because your labor costs have gone up)

If you look at these trends individually they tell you different things about whether/when you should optimize. So I don't think there's a general answer.

But in many cases it makes sense to rapid-prototype selected functions of software, forget about optimization unless it's an obvious necessity for the thing to function, then that gets you the ability to try it out and measure performance, study it, and then throw it away so you can do a better job architecting your software for real.

link|flag
vote up 1 vote down

Don't write a database access layer that causes thousands of database calls for every click in the UI.

link|flag
vote up 0 vote down

Loop optimizations should always be made early. That is when the algorithm is most clear in your mind.

link|flag
What exactly do you mean with "loop optimization"? – Michael Borgwardt Jan 23 at 21:49
When someone first writes a for loop that does something complicated, the kitchen sink usually goes in. Things that don't need to get recalculated get recalculated. Sometimes, not everything needs to be recalculated, but only a portion of the loop needs to be recalculated. – Steve Jan 23 at 21:54
sometimes something can be calculated once outside of the loop, etc. In a tight loop with a lot of math, this can get out of hand quickly – Steve Jan 23 at 21:55
1  
Sorry, but to me that definitely sounds like premature micro-optimization. – Michael Borgwardt Jan 23 at 21:57
1  
Sorry, didn't explain myself well. In my work, I do a lot of math. These tend to occur in a couple of defined places. In general, we ignore the GUI and most other non/IO code, and make sure the math is right, and that its fast. We know in advance the bottleneck will be trig/exp/ln functions. – Steve Jan 23 at 22:31
show 3 more comments
vote up 0 vote down

We build the code, and if performance is an issue, we fix it using the apropriate tools.

The big problem with optimized code is that it is often more complex. And complex code is hard to maintain, so you should only optimize what needs to be optimized.

link|flag
vote up 0 vote down

First rule: all data/tables in the database model will be (at least) in boyce-codd normal form. The latter you'll be in optimizing your database, the closer you'll be to hell.

link|flag
vote up 0 vote down

Immutability in objects.

I call it the best optimisation there is.

link|flag
vote up 0 vote down

Based on my experience from various, mostly negative, experiences around optimizations as a software developer and architect.

Do (and make sure the team does):

  • know the data
  • know the programming language(s)
  • appreciate the customer's hardware and network setup
  • keep things immutable
  • have a profiler and know how to use it
  • address issues when they occur

Do not:

  • cache
  • make everything configurable
  • make a framework
  • roll your own concurrency scheme
  • plan too far ahead
link|flag
vote up 0 vote down

From a database perspective, there are a lot of things that are known to be faster most of the time in querying. For instance, avoiding writing cursors is not a premature optimization it is good design. There are three things which are critical to database development: security, data integrity and performance. If you are not considering the performance of every query you write, then you are doing a bad job. You don't have to optimize to the nth degree, but you should think every time, is this the best performing way to do this query. Once you learn the techniques which perform better they are not harder to maintain or understand. If you don't consider performance when writing queries then your application will work badly and will ultimately fail. Users consider performance as one of their highest priorities and developers should do the same.

And I'm with mjmarsh, if you aren't testing against a dataset as large or larger than you expect the application to have, you are not doing your job. It isn't premature to consider how normal performance will be. What works OK in a small dataset is immediately shown to be a problem in a large dataset.

link|flag

Your Answer

Get an OpenID
or

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