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

prev 1 2 3 4 5 6
vote up 0 vote down

Cache locality

EDIT:

Harsh guys...

I switched out an object graph for a linear memory representation where cache misses basically went away. With perfetching and some C++ template tricks I could define a nicely laid out memory representation which the CPU would crunch in no time at all.

This optimization wasn't really that much work but it signifies how horrible poor memory access patterns can be and God forbid, reference types...

link|flag
show 4 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 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 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
56  
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 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 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 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 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
prev 1 2 3 4 5 6

Your Answer

Get an OpenID
or

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