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
|
|||||||||||||
|
|
|
The most chat-addicted guy in the room took a day off. |
||||
|
|
|
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. |
||||||||||||||||||||
|
|
|
Changing a lot of logging to check log levels first. From this:
To this:
Made a HUGE impact on production performance. Even though Especially considering that some of our |
||||||||||||||||||||
|
|
|
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. |
||||||||
|
|
|
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. |
|||
|
|
Enabling gzip compression for a dynamic web page. Uncompressed page had more than 100k ... compressed only about 15k. It felt so fast afterwards :-) |
||||||||
|
|
|
A one-character change yielded an infinite speedup:
Guess what the change was... |
||||||||||||||||||||
|
|
|
Turning off disk compression on a database server. Even accounting for the time taken to slap the sysadm, this was a huge net benefit :-) |
||||||||
|
|
|
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 Moral: choose the right data structure! |
||||
|
|
|
Turned off ODBC logging on a production database (someone had turned it on and forgotten it) - got about a 1000x performance improvement! |
|||
|
|
Truncate table BigTable. Queries returned no records but it was faaaaaast! |
||||||||||||||||
|
|
|
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! |
|||
|
|
|
|
This:
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. |
||||
|
|
|
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. |
||||
|
|
|
When updating WinForms controls realtime, simply doing something like
instead of always doing
took the CPU utilization from 40% down to almost nothing. |
||||||||
|
|
|
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;
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.
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. |
||||
|
|
|
Removing some rogue sleep()'s in some Java code. |
||||
|
|
|
Replacing a "MUL" with a "SHL"/"ADD" series in some x86 graphical code also resulted in about an order of magnitude improvement. |
||||||||
|
|
|
Go from single-core to quad-core. (Hey, you didn't strictly say programming related!) |
||||
|
|
|
After profiling showed that a large amount of time as being spent in Choosing appropriate data structures and algorithms is the best first step to improving performance. |
||||
|
|
|
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. |
|||
|
|
|
|
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 |
|||
|
|
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. |
||||
|
|
|
In log4j on a server-side app, changing something like this:
to this:
Gave us a 30% boost. |
||||
|
|
|
Using a connection pool. Who would have guessed that something that is known to makes things faster actually does make things faster? |
|||
|
|
|
|
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;
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. |
||||
|
|
|
Changed a SQL query from a cursor to a set based solution. |
|||
|
|
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. |
|||
|
|
|
|
Indexed a database. Imagine driving a Daewoo Matiz that suddenly morphs into a Lamborghini. |
|||
|
|
|
|
Changing log4net logger level from "DEBUG" to "INFO". |
|||
|
|
