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).
|
86
|
|||||||||||||
|
|
|
Rewriting a job with cursors on TSql to work with helper tables, a long ago, so, I don't have the code, but it improves from 2 hours to ten seconds |
|||
|
|
|
|
The report-builder component of a piece of financial software my team built had a nasty little glitch: it read the field delimiter character out of the DB every time it was inserted. (DB was Oracle 8 -- nice and heavyweight.) Several months later, my boss asked me to take a look at the code and see if I could optimize it so that reports would finish faster than "overnight". I spotted this little oopsie and stored the delimiter in a local variable after the first read. Performance increased literally 100-fold. The original coder was ordinarily very competent. Dude just had a brain cramp the day he coded that. |
|||
|
|
|
|
Loading of a web page went from 30s to 4s (first time) and to 0.5s (cached). |
|||
|
|
|
|
Removed a delay() instruction from an old DOS game made by a friend, to make it work on a 286 system. |
|||
|
|
|
|
In the first week of work on my first job I was asked to make some fixes (mainly UI) for application that was used internally to monitor usage of our ATMs (the number of them was below one hundred). The initial load time was very annoying, it was about ten minutes. And I was needed to make many restarts of that application to test my fixes, so I decided to find the reason of such slow start up. Without usage of any profiler I found code that was very suspicious to me. There was some method which was used to build human-readable information based on the states of ATMs stored in local database.
I replaced first two steps in this procedure with something like:
After that change the application initialization time was reduced to some seconds and the users which used to always go for some tea or coffee during start-up just denied to believe that the program worked correctly with such fast start-up. There are, however, was found one regression after few weeks of usage. The data about operations which was started before range of my query was lost or in some cases corrupted, because I was missing first row of that operations, but that bug was fixed and the users was happy. |
|||
|
|
|
|
Rewriting a join: First:
After:
The query went from 3+ minutes to 8s after some more tweaking it eventually came down to about a second which was acceptable for this one. |
|||
|
|
|
|
When writing a solver for a game, adding very simple and limited dead-end recognition to prune the search tree brought down solving time for a big level from 15 minutes to near instantaneous. |
|||
|
|
|
|
I originally used an ASP.NET DataGridView to display a large and richly formatted dataset which pushed the page beyond the 580k mark. I later replaced the DataGridView (which is made up of tables by default), with a repeater control and a carefully 'cascading' arrangement of CSS styles. The change brought the size down to the 120k region. |
|||
|
|
|
|
I had a state machine transition function which relied on a local This avoided re-allocating/growing the stack each time, resulting in something like a 10x performance improvement. |
|||
|
|
|
|
Switched from using Linq to some older style array looping. :) cut the processing time on a particularly lengthy method nearly in half. (from 940ms to 501ms). |
|||
|
|
|
|
One time I had a JavaScript function run for about 45 seconds in IE. Chrome crunched it between 1-2 seconds. Oh, that, and going from a Debug Build to Release Build... That was an eye opener. |
|||
|
|
|
|
Removing
from a Rails app that didn't need it. Even if I needed the scripts, that line was a huge bottleneck. The app, by default, included the javascript files with a random number parameter attached to the end of the filename to prevent caching. Fixing this dropped the page load time from 7.5 seconds to 1.5 seconds. |
|||
|
|
|
|
I strongly urge everybody else to do as I do: Do the improvement and forget about it the second you did it. Otherwise you will do premature optimizations in a subsequent project. ;) Always consult a profile before doing anything (e.g. the "always use stingbuilder" notion is usually not necessary - if not hurtful). Us the best readable thing. and worry about performance within one tier later on. Make it readable and correct (in that order) and then, maybe, make it faster. |
|||
|
|
|
|
In terms of web app pages loading faster, we used a filter to strip out all excess white space from the html. This decreased the actual page size 25% which speeds things up quite a bit. Reason we had so much white space was that there was a big JSP file involved that had lots of pretty printing. Pretty printing is a good thing but can increase your page size/load time in this scenario. |
|||
|
|
|
|
I once tweaked a small tool for exporting master/detail customer data written in VB6/ADO on MS Access. Got a 60x performance improve (from 10 minutes to 10 seconds). It was working like this:
Guess what the problem was... :-) |
|||
|
|
We had a huge multi-project Maven1 build structure that was just insane, over 200 project modules. Due to inter-dependencies, it was not even possible to do a full automated build- modules had to be "released" to the CM group manually, a process which sometimes took 2 days. The first optimization was to convert from Maven1 to Ant+Ivy. This allowed automated builds, taking about 90 minutes for a full release. The second optimization was to stop doing " EDIT: After re-reading the question, I guess this doesn't really count as a "smallest change", but I'll leave it here and risk the down-voting. |
|||
|
|
|
|
I removed a Cartesian join from a query and the nightly job went from hours to seconds. Was tested in QA, but no one ever questioned that the job wasn't suppose to take hours to complete so they passed it. Same company, with some simple re-indexing I took time sensitive nightly batch processing that was taking 6-8 hours to complete and got it completed in 1-2 hours. Just yesterday I had a client add a few indexes to a few tables and reduced the run time of a procedure from 8 minutes to 6 minute. Not great mind you, but the tables are very large, and the procedure runs every 10 minutes. So over the coarse of a day I saved the SQL Server 2 hours of processing. |
|||
|
|
|
|
In a tight loop, i replaced the return value of a function from |
|||
|
|
|
|
Quite similar to what you described in your question, I didn't trust SQL Server's optimizer, and added "OPTION(HASH JOIN)" to a query - over 3 orders of magnitude faster. |
|||
|
|
|
|
Adding a compound index on a table. It reduce the time for a select query from 83 second to 2 seconds. Note that the SQL Wizard's hints weren't appropriate, I spent one day to think about the columns to be added/their order inside the index. |
|||
|
|
|
|
i had a program that was address checking tens of millions of addresses. it could do a few hundred per second but it still took the program about 4 days to finish each run. the problem was that it was doing one address at a time. we made the program multi-threaded (didn't take much work at all) and had it use 5 threads. the program went from taking a few days to complete to a few hours. note: we were making calls to another program that would do the address check |
|||
|
|
|
|
Changed from using a TreeSet to a HashSet. Was performing lots of set unions. ~40 seconds to ~200 ms. |
|||
|
|
|
|
In an ASP.NET application there was a page which displayed a lot of records (order of 1000s) from a SQL database query. Originally the app was storing results in a DataSet before sending the results to client. This was causing users to have to wait a long time to get the results, as well as causing scalability problems because the server was storing the entire result set in memory (DataSet) before returning it to the client. A long wait would also cause users to constantly hit refresh, worsening the problem. I removed the DataSet and had the code stream out the query results using Response.Write, and this greatly improved the scalability of the server and the perceived performance from the user's perspective (since they were getting results streamed to them immediately). |
|||
|
|
Moved a function call outside of nested loops. I think that was about 10x improvement. Changed the switch from application server to database from 100Mbps to 1Gbps, this improved performance during high traffic. |
|||
|
|
|
|
Indexed a database. Imagine driving a Daewoo Matiz that suddenly morphs into a Lamborghini. |
|||
|
|
|
|
The other day I found out how bad Postgres 8.1 is at optimising prepared statements. I changed the code from SQL (Then I installed 8.2 on a test box and found out they'd fixed that problem...) |
|||
|
|
|
|
In C, I was writing a subroutine to slurp an entire file into one variable (bad practice, wastes a lot of memory, but it's the best solution and I only do it to one file). It used
to this:
It now reads and processes the same file almost instantaneously. EDIT: Fixed typo. |
|||
|
|
Usually when I fine tune an app, I find using stringbuilder for any heavy string work gives a huge performance boost. |
|||
|
|
|
|
Doing some one-time processing of an XML file in Perl was taking minutes. Rewrote the routine in C# and it completed in seconds. |
|||
|
|
Putting the OutputCache attribute on a WebMethod The WebMethod was loading Xml files and de-serializing the data to an object graph. |
|||
|
|
