vote up 80 vote down star
84

What's the biggest performance improvement you've had with the smallest change? For example, I once improved the performance of a certain page on a high-profile web app by a factor of 10, just by moving "where customerID = ?" to a different place inside a complicated SQL statement (before my change it had been selecting all customers in a join, then later selecting out the desired customer).

flag
1  
@EvilTeach: That's because usually you are dealing with alot of data, and fixing the databse issue results in a better complexity O(log n) vs O(n) through such a simple change. – WW Feb 15 at 0:23
2  
Is this question purely for the hell of it? What possible use could any answers be? – skaffman Jul 27 at 14:55
5  
@skaffman: If you read about some smart fix here, and then later find yourself in a similar situation - there would be a use. – Evgeny Sep 17 at 4:09
show 1 more comment

158 Answers

1 2 3 4 5 6 next
vote up 147 vote down

The most chat-addicted guy in the room took a day off.

link|flag
1  
I've already tried a uservoice issue with "techincal rep" and general rep where people could distinguish what they are giving, thus allowing for funny answers as well as truly difficult questions. – Spence Sep 2 at 23:35
show 4 more comments
vote up 91 vote down

In some old code I inherited from a coworker, I replaced string concatenations (+ operator) with StringBuilder (.NET). Execution time went from 10 minutes to 10 seconds.

link|flag
55  
I seriously doubt that. – Bombe Feb 13 at 13:20
14  
No really. It was a huge method with triple-nested for loops wich all appended strings to the main string. In the specific scenario there were thousands and thousands of strings to be concatenated. – Gerrie Schenck Feb 13 at 13:26
17  
This is real. With a lot of loops that use the + operator on strings, this will happen very, very easily. I had a program that looped a few thousand times fall from a couple of hours to 15 minutes once by doing this. – Chris Feb 13 at 15:11
7  
I had the same experience. We had a process drop from ~30min to 5min after making a change like this. – Kevin Tighe Feb 13 at 15:37
12  
And I thought that "StringBuilder" was the very first performance thing ever, and everybody knew about it. – Anthony Feb 13 at 21:05
show 14 more comments
vote up 72 vote down

Changing a lot of logging to check log levels first.

From this:

log.debug("some" + big + "string of" + stuff.toString());

To this:

if (log.isDebugEnabled()) {
    log.debug("some" + big + "string of" + stuff.toString());
}

Made a HUGE impact on production performance. Even though log.debug() only logs when debug logging is enabled anyway, the string is built BEFORE it is passed to log.debug() as a parameter, so there was loads and loads of string building that got completely eliminated in production.

Especially considering that some of our toString() methods produced about 10 lines worth of info, by calling toString() on fields, which call toString() on their fields... and so on.

link|flag
4  
Yeah, string-building and formatting looks like just a 1-liner, so how bad could it be? It's easy to overlook that it exercises a major chunk of the run time library. – Mike Dunlavey Feb 13 at 18:59
2  
For cleanness wouldn't it be better to add the log.isDebugEnabled() to the log.debug method? – Dscoduc Feb 13 at 20:52
7  
The point is that the argument still has to be created before the method can be called. Deciding inside the method not to do anything is too late as the parameter work has already been done. – jackrabbit Feb 13 at 20:57
3  
@Dscoduc log.debug already does that check on whether debug is enabled. So yes, we are checking a boolean twice (unless it's false). As @jackrabbit said, the issue is that the parameters are evaluated BEFORE they are sent into the function, so the real "work" isn't avoided. – TM Feb 13 at 21:36
5  
@mP - not everyone knows everything – benPearce Jun 23 at 4:54
show 11 more comments
vote up 59 vote down

This is the same answer as I gave here:

I was working at Enron UK on a power trading application that had a 2-minute start-up time. This slowness was really annoying the traders using the application, to the point where they were threatening dire retribution if the problem wasn’t fixed. So I decided to explore the issue by using a third-party profiler to look in detail at the start-up performance.

After constructing call graphs and mapping the most expensive procedures, I found a single statement that was occupying no less than 50% of the start-up time! The two grid controls that formed the core of the application’s GUI were referenced by code that marked every other grid column in bold. There was one statement inside a loop that changed the font to bold, and this statement was the culprit. Although the line of code only took milliseconds to run, it was executed over 50,000 times. The original developer had used small volumes of data and hadn’t bothered to check whether the routine was being called redundantly. Over time, as the volume of data grew, the start-up times became slower and slower.

After changing the code so that the grid columns were set to bold only once, the application’s start-up time dropped by nearly a minute and the day was saved. The moral here is that it’s very easy to spend a lot of time tuning the wrong part of your program. It’s better to get significant portions of your application to work correctly and then use a good profiler to look at where the real speed bumps are hiding. Finally, when your whole application is up and running correctly, use the profiler again to discover any remaining performance issues caused by your system integration.

link|flag
7  
+1 for the profiler plug... Until you use such tools, you are only guessing at the potential bottlenecks. – DGM Apr 14 at 15:40
18  
It must be comforting to know how much Enron benefited from your code improvement. ;) – Chris Lutz May 26 at 19:22
show 3 more comments
vote up 59 vote down

Add an index on a field of a table used for a complex SQL query. You can sometimes easily improve the performance by 90% or so.

link|flag
show 2 more comments
vote up 55 vote down

Enabling gzip compression for a dynamic web page. Uncompressed page had more than 100k ... compressed only about 15k. It felt so fast afterwards :-)

link|flag
4  
I never did any measurements myself, but I think that benefits outweigh costs in this case. Sure, gzip will eat some CPU, but will also need less bandwidth to transfer data. See also marc.info/?l=tomcat-user&m=112235960005958&am… for similar discussion. – Peter Štibraný Feb 15 at 6:41
2  
@alex, you rendered cubic table in HTML? Wow... :) – Constantin Feb 18 at 14:26
show 6 more comments
vote up 38 vote down

A one-character change yielded an infinite speedup:

int done = 0;
while(!done);
{
    doSomething();
    done = areWeDoneYet();
}

Guess what the change was...

link|flag
12  
good argument for why you should do while(x) { instead of newline before { – d03boy Feb 13 at 15:33
2  
I find with the "{" on the same line that I'm a LOT less likely to accidently type a ";". So, that advice really does work in practice. – Brian Knoblauch Feb 13 at 15:58
2  
Too bad the compiler couldn't optimize away that empty but infinite loop. :) – Eddie Feb 13 at 20:32
7  
@rmeador: True, it's no easier to fix when reading the code, but it's definitely easier to avoid in the first place. Your muscle memory is so used to typing semicolon-enter all the time. Typing semicolon-openbrace-enter would feel extremely awkward, you would notice right away. – Adam Bellaire Feb 13 at 21:44
2  
It is trivial for the compiler to detect an empty statement attached to a loop/'if' followed by a block statement that is not attached to a loop/'if'. The compiler should have warned you. – Ctrl Alt D-1337 Aug 17 at 14:05
show 11 more comments
vote up 36 vote down

Turning off disk compression on a database server. Even accounting for the time taken to slap the sysadm, this was a huge net benefit :-)

link|flag
34  
+1 for slapping the admin – Matthew Whited May 26 at 19:19
4  
Thankfully Microsoft SQL Management Studio 2005 will actually refuse to let you mount a database on a compressed NTFS volume/folder last time I checked. – David Jul 27 at 17:23
show 1 more comment
vote up 33 vote down

Just recently I did a Project Euler problem. I used a Python list to look up already computed values. The program took maybe 25 to 30 minutes to run (I didn't measure it). The lookup has to iterate through all values until it finds a matching one in the list. Then I changed the list to a set which basically does a hash lookup. Now the program runs in 15 seconds. The change was simply to put set() around the list.

Moral: choose the right data structure!

link|flag
10  
This is basically the moral of every Project Euler problem. – Eric Jul 27 at 14:57
vote up 30 vote down

Turned off ODBC logging on a production database (someone had turned it on and forgotten it) - got about a 1000x performance improvement!

link|flag
show 2 more comments
vote up 23 vote down

Truncate table BigTable.

Queries returned no records but it was faaaaaast!

link|flag
2  
+1 LOL-Point for funny answer – Zaagmans Feb 13 at 13:24
2  
Wasn't funny at the time :) – Goran Feb 13 at 13:25
1  
Had a similar experience with an intern who used LIMIT 1 to achieve that result. – unbeknown Feb 13 at 14:04
1  
God, I thought you truncated Google's BigTable :P – Ionut G. Stan Feb 13 at 16:03
show 1 more comment
vote up 22 vote down

When maintaining someone else's code, I encountered a stored procedure that was taking approximately 4-5 seconds to run and producing a result with only a few rows. After examining the query in the stored procedure and the table that the query was running against, there was a distinct lack of indexes on the table. Adding just a single index improved that stored procedure from 4-5 seconds to about 0.2 seconds! Since this query was being run many times, it was a big improvement overall!

link|flag
vote up 20 vote down

This:

void slow() {
  if( x % 16 ) {
  }
}

void fast() {
  if( x & 15 ) {
  }
}

Converting modulus of powers of two to an equivalent bitwise AND operation moved a real-time MPEG-to-JPEG transcoder from only being able to produce B&W images to producing full colour JPEGs of a movie, with CPU cycles to spare.

link|flag
4  
You would think so. There is a huge gap between theory and practice and the easiest way to find out of the compiler performs the optimization is to test the performance. A number of people have now said to me, "The compiler should optimize that." And they have always been wrong. A compiler will not automatically optimize everything that can be -- someone must write the code to perform the optimization. Some optimizations are not as important as others. – Dave Jarvis Sep 3 at 18:43
show 2 more comments
vote up 16 vote down

I was writing a Java MergeSort, just to experiment and see how much of my old Data Structures course I could still put into practice. My first time around I implemented my merge routine with ArrayLists, and set it to sort all the words in War and Peace. It took five minutes.

The second time I changed from using the Collection classes to simple arrays. Suddenly the time to sort over 500K words dropped to less than two seconds.

This hammered home to me just how expensive object instantiation can be, especially when you're creating a lot of objects. Now when I'm troubleshooting for performance, one of the first things I check for is whether objects are being instantiated within a loop. It's much cheaper to reinitialize an existing object than it is to create a new one.

link|flag
1  
@Eddie, I was using Java 1.6. I'm sure instantiation has gotten faster, but there is still a significant amount of overhead involved in object creation. – rtperson Feb 16 at 13:47
show 4 more comments
vote up 15 vote down

When updating WinForms controls realtime, simply doing something like

if (newValue != txtValue.Text)
   txtValue.Text = newValue;

instead of always doing

txtValue.Text = newValue;

took the CPU utilization from 40% down to almost nothing.

link|flag
1  
@benPearce Is it an ordinary property or or something that causes the UI to repaint itself? The expensive part of this is that the UI keeps repainting itself even though it's that same data. – Jacob Adams Jun 24 at 15:49
3  
TextBox already does it: if (value != base.Text) { base.Text = value; ... } – Ian Boyd Jul 27 at 17:20
show 5 more comments
vote up 14 vote down
  • Adding two indexes to a table speeded up a stored procedure from 12.5 hours to 5 minutes.
  • Moving a straight data copy operation from SQL's DTS to just a "insert into ... select from" statement reduced copy time from an hour to 4 minutes.

A more common example, however, was when a colleague had used sub-selects on SQL to get certain values from a child table. Worked fine on small datasets, but when the main table grew, the query would take minutes. Replacing the sub-selects with a join on a derived table made the whole thing much, much faster.

Essentially;

SELECT Name, 
       (count(*) from absences a where a.perid = person.perid) as Absencecount
FROM Person

is very bad, as SQL will have to do a new select statement for each row in Person. There are different ways of making the above more efficient but using a derived table can be a very efficient way.

SELECT Name, Absensecount  
FROM Person left join  
   (select perid, count(*) as Absencecount from absences group by perid) as a  
ON a.perid = person.perid

The problem with SQL is that it is very easy to write very bad SQL. SQL Server is so good at optimising stuff that most of the time you don't even realise you are writing bad code until it doesn't scale well. One of the golden rules that I always look for is; "Is my inner query referencing anything in the outer query"? If the answer is yes then you have a non-scaling query.

link|flag
2  
SELECT p.Name, count(*) FROM Person p INNER JOIN absences a on a.perid = p.perid GROUP BY p.perid, p.Name – Carl Manaster May 26 at 19:33
show 1 more comment
vote up 13 vote down

Removing some rogue sleep()'s in some Java code.

link|flag
3  
Probably to "fix" race conditions. I enjoyed cleaning up after another developer after they stacked sync locks. They used upwards of 5 locks nested in the same method instead of fixing the real problem. In trying to create a singleton (which really should of been an instance but I won't even get into that) he didn't declare the lock object as static. This caused every call to get it's own lock and the nested locked just slowed the code down enough to stop the 3 two 5 requests from having problems. – Matthew Whited May 26 at 19:18
show 2 more comments
vote up 11 vote down

Replacing a "MUL" with a "SHL"/"ADD" series in some x86 graphical code also resulted in about an order of magnitude improvement.

link|flag
1  
That must have been a long time ago… – Bombe Feb 13 at 13:21
1  
8088 10mhz clone with an ATI EGAWonder800+ video card! :-) A very long time ago... – Brian Knoblauch Feb 13 at 14:37
show 1 more comment
vote up 11 vote down

Go from single-core to quad-core.

(Hey, you didn't strictly say programming related!)

link|flag
2  
@mmyers, It took a simple swap of parts. Maybe an hour at most. – strager Feb 13 at 20:44
show 4 more comments
vote up 9 vote down

After profiling showed that a large amount of time as being spent in std::map<>::find(), I looked at the key space and found that it was pretty much contiguous and uniform. I replaced the map with a simple array, which reduced the time required by about 80%.

Choosing appropriate data structures and algorithms is the best first step to improving performance.

link|flag
3  
std::map isn't a hash, it's a binary tree. so there was a binary search every time he called find. Replacing that with a straight array lookup would be miles better. – Sol Feb 14 at 17:34
show 1 more comment
vote up 9 vote down

Letting go that developer who fondly and erroneously believed that demonstrating how clever you are is the same thing as getting work done.

Sometimes to improve the code -- improve the team.

link|flag
vote up 8 vote down

One project I worked on had a very long build time - over half an hour for a full rebuild. After a bit of investigation I traced it down to the precompiled header settings. I then wrote a small app to scan all the source files and reduce the header file dependencies and correctly set up the precompiled headers. Afterwards, full rebuild time was less than a minute.

Skizz

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

Switch from the VS compiler to the Intel Compiler for some numeric routines. We saw a 60% speedup just by recompiling and adding a few flags. Utilizing OpenMP on the routine's for loops yielded a similarly large speedup.

link|flag
1  
We did the same for some image analysis algorithms and saw a nice improvement as well. – Ed Swangren Feb 19 at 8:25
vote up 8 vote down

In log4j on a server-side app, changing something like this:

log.debug("Stuff" + variable1 + " more stuff " + variable2);

to this:

if(log.isDebugEnabled())
    log.debug("Stuff" + variable1 + " more stuff " + variable2);

Gave us a 30% boost.

link|flag
2  
This is already mentioned in another answer, with some interesting comments. – Hosam Aly Feb 13 at 22:12
show 9 more comments
vote up 8 vote down

Using a connection pool. Who would have guessed that something that is known to makes things faster actually does make things faster?

link|flag
vote up 8 vote down

Removed a html tag from a web application, gained 100% performance increase.

At some point I noticed that requests were duplicated. It took me some time to figure out it was caused by an empty image tag lost in sh*tload of HTML;

<img src="" />

For obvious reasons, Django's template system don't throw errors when a variable does not exists, so we didn't notice anything unusual when we inadvertently removed a template variable, which happened to contain an image src (for a small icon).

Removed the tag, the application loaded twice as fast.

link|flag
3  
+1 for figuring that one out. -1 for using Django. You came out even :) – tsilb Sep 2 at 23:29
vote up 7 vote down

Changed a SQL query from a cursor to a set based solution.

link|flag
show 3 more comments
vote up 6 vote down

My biggest performance improvement was gzipping a 700 Kb XML file downloaded by thousands of clients a day and then caching the gzipped output in memory, dropped bandwidth usage somewhat but more importantly dropped server load from about 0.7 to 0.00.

link|flag
vote up 6 vote down

Indexed a database. Imagine driving a Daewoo Matiz that suddenly morphs into a Lamborghini.

link|flag
vote up 6 vote down

Changing log4net logger level from "DEBUG" to "INFO".

link|flag
1 2 3 4 5 6 next

Your Answer

Get an OpenID
or

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