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).
|
84
|
|||||||||||||
|
|
|
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... |
|||
|
|
Turning off disk compression on a database server. Even accounting for the time taken to slap the sysadm, this was a huge net benefit :-) |
||||||||
|
|
|
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. |
|||
|
|
|
|
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. |
||||||||||||||||||||
|
|
|
Truncate table BigTable. Queries returned no records but it was faaaaaast! |
||||||||||||||||
|
|
|
Turned off ODBC logging on a production database (someone had turned it on and forgotten it) - got about a 1000x performance improvement! |
|||
|
|
Enabling gzip compression for a dynamic web page. Uncompressed page had more than 100k ... compressed only about 15k. It felt so fast afterwards :-) |
||||||||
|
|
|
Replacing a "MUL" with a "SHL"/"ADD" series in some x86 graphical code also resulted in about an order of magnitude improvement. |
||||||||
|
