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

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 5 vote down

I recently rewrote a SQL query (for removing duplicates from a table), bringing the runtime down from still-not-finished after 47 hours to 30 seconds.

The trick: realising that it was an upgrade script, and I didn't need to worry about concurrency, since the database was in single-user mode. Thus, instead of removing duplicates from the table, I could just SELECT DISTINCT into a temporary table, TRUNCATE the first one and then move the rows back.

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

Turned off automatic row/column resizing on a DataGridView. Due to the way our app was written by another developer, the cell formatting would cause some checkbox column's value to be repopulated, causing the entire grid to recalculate it's size every time that column was painted. Clicking a button to add a row to the table took an exponential amount of time. Around 12 seconds to add a row by the time it got to the fourth row.

I turned the AutoRowSize off for the grid, and everything was almost instantaneous, as it should be.

link|flag
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 0 vote down

Learn to cache bitmap objects in .NET. The bitmaps were generated on the fly but many could be reused instead of regenerated. From an unusable app went to a pretty performant one.

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

I swapped around the order of a selection criteria for a database query once and the runtime went from a 6 or so hours to a few seconds! The customer was pretty happy!!

link|flag
vote up 2 vote down

A long time ago, I removed an index, and sped up my query by a factor of at least 300. I never did figure out why Oracle 7 figured it needed to do a full Cartesian join if it had the index, and not if it didn't.

link|flag
vote up 1 vote down

Updating the stats on a MS SQL Server database gave a 90x performance increase on certain queries, i.e. 90 minutes to 1 minute.

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

Switched from PHP to Python for pet projects.

link|flag
show 1 more comment
vote up 6 vote down

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

link|flag
vote up 0 vote down

In a game application, I had an immutable class representing a cell in the game area's grid. It had getter methods which calculated the corners of the cell lazily, which included allocating new objects to represent the coordinates. The profiler showed those getters to be the bottleneck in the AI algorithms. Calculating them eagerly in the class's constructor improved the performance very much (I don't remember the exact numbers, maybe more than doubled the speed).

Before the code was like this:

public Point[] allPoints() {
    return new Point[]{center(), topRight(), topLeft(), bottomLeft(), bottomRight()};
}

public Point center() {
    return new Point(x + inner(width) / 2, y + inner(height) / 2);
}

public Point topLeft() {
    return new Point(x, y);
}

public Point topRight() {
    return new Point(x + inner(width), y);
}
...

The allPoints() method was the bottleneck. And after optimizing, the creation of all those values was moved to the constructor and stored as instance variables, after which all the getters were trivial.

It's always best to first do the simplest thing that could possibly work, and change it to something more complex only when there is evidence that the simplest thing is not good enough.

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

On a 68000, some years ago, in this C code:

 struct {
 ...
} A[1000];

...

int i;
for (i = 0; i < 1000; i++){
   ... A[i] ...
}

One very small change caused a 3-times speedup. What was it?

Hint: sampling the call stack a few times showed the program counter in the integer-multiply-subroutine being called in the code from A[i].

link|flag
1  
Right. Even if a 16-bit multiply instruction is slow, it's a lot faster than a subroutine to do 32-bit multiply. If you like that, they used to do floating-point with libraries also. 300 instructions to do an Add. – Mike Dunlavey Feb 13 at 21:02
show 8 more comments
vote up 2 vote down

Until recently we had an intern who had a special method of optimization. He put together a sql statement that took over 20 minutes to run and had to be called quite often. He became aware that the sql statement would finish real fast when he put a LIMIT 1 at the end. I think I destroyed his faith in humanity when I told him that this will not return the results he needs.

link|flag
vote up 0 vote down

The best thing I ever did was learn NHibernate and incorporate it into all my projects. My SQL is now always properly formed, and I don't have bottlenecks from that end of the project.

--And properly indexed tables that perform a lot of lookups!

link|flag
vote up 3 vote down

Installed profiler on the application server. It makes the plumbing work much more fun.

link|flag
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 4 vote down

I inherited a time tracking application that was written in VB 3 and used an Access database. It was the first VB application written by a very experienced COBOL programmer. Rather than using SQL and letting the database engine get the data he wanted efficiently he opened the table and went from record to record testing each one to find the one he wanted. This worked okay for a while, but when the table grew to 300,000 records it got a "little slow". Looking for a single programmers time entries would take about 5 minutes. I replaced his code with a really simple SQL statement and the same search went down to about 10 seconds. The original programmer thought I was a god.

link|flag
1  
But still, 10 seconds to query a 300K table? Even Access should be able to handle that in milliseconds. – Juliet Feb 14 at 20:58
1  
Not too surprising if it was on a network share – Matthew Whited May 26 at 19:22
show 1 more comment
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 7 vote down

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

link|flag
show 3 more comments
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 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
2  
int done = 1; cute. – rtperson Feb 13 at 13:48
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
show 11 more comments
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 0 vote down

I refactored a SQL query that was running as a batch job. It had several functions in it that were horribly inefficient, and the query itself was poorly written.

After spending a few days rewriting it, the run time went from 13.5 hours to 1.5 hours. I have still not been able to beat that efficiency increase to this day.

link|flag
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 148 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 60 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
8  
+1 for the profiler plug... Until you use such tools, you are only guessing at the potential bottlenecks. – DGM Apr 14 at 15:40
19  
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 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 1 vote down

Updating the database statistics on Oracle 9 using DBMS_STATS.GATHER_DATABASE_STATS reduced the runtime of a (rather simple) query from around 12 minutes to 200 ms. Oracle 9 decided that multiple full table scans were a better approach than using the index because the statistics were broken.

link|flag
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 3 vote down

Set NOCOUNT on a complex cursor based stored procedure.

It was returning a row count of 1 a few million times even though the application had no need to know it.

The gain was purely in network I/O.

link|flag

Your Answer

Get an OpenID
or

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