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
|
|||||||||||||
|
|
|
Didn't did it in practice, but I had to normalize a matrix on a parallele machine : meaning for each column, divide each value by the average of the column. Well with Direct Maping Cache, if the matrix is stored by continuous values of rows in memory, you can get a 100% miss. It depends the most inner loop's data storage strategy. An other "error" is to invert the "i" and "j" in the nested loops (where i is for the lines and j for columns) which makes a very easy optimisation on the code withou rewriting anything (just cut and paste) |
|||
|
|
|
|
Changed
to
Saved about 11% in the rendering loop. (count was around 50000) |
|||
|
|
|
|
Switched from an |
|||
|
|
|
|
Using Sqlceresultset instead of Insert Query.It boosts performance in pocket pc applications especially when u deal with Bulk inserts. Using datareader instead of datatable as datagrid datasource if u deal with above than 1000 records resultset. Partition in oracle database.It improves %25. Using string.empty instead of "" if u want to check a variable's "" value. |
|||
|
|
|
|
Instead of doing all of the lookups against the database in our web app, the lookup information is pulled into a HashTable in memory and kept for an hour: HttpContext.Current.Cache.Insert(Name, htData, Nothing, DateTime.Now.AddHours(1), System.Web.Caching.Cache.NoSlidingExpiration) We really don't need anything fresh to the minute, and looking the info up from the DB once an hour (instead of 10 times a second) improved performance trememdously. |
|||
|
|
|
|
Once upon a time I've added |
|||
|
|
|
|
I broke one complex query into to two separate relatively small queries, and it improved performance by an order of magnitude, I was surprised. |
|||
|
|
|
|
Dynamic Programming, Sometimes It's amazing how the use of a simple look-up table of some values, in a recursive function, can help. for a small example check this Fibonacci in C++. |
|||
|
|
|
|
An old application started going haywire on submissions of new data when we moved to a new SQL Server silo. It went from 1-2 seconds to several minutes. Obviously something changed on the SQL/network side but after 3 days we weren't able to identify it. Upon examining the code we noticed that it had a random identifier based on the time (goofy design - not mine - SQL Identity or GUID work fine for me), only it was seeding to the millisecond. So the code only had 100 different seeds meaning it would likely hit the same pattern of randoms and cycle through until it found the next available one. We seeded to the current time (instead of millisecond) and boom, 1-second submissions. On a side note, our development environment had the same SQL/network problem but it went unnoticed because the Web server (a VM) was so slow that the random identifier algorithm (20 random characters based on current millisecond) produced an identifier built from several different random seeds whereas prod built from a single random seed. A glorious bug that was kind of fun to uncover / resolve. |
|||
|
|
|
|
Dropping Java's array clone method and using other methods instead. It turns out cloning is very resource consuming and it should be used only when definitely necessary. It dramatically improved my Java code's performance. |
|||
|
|
|
|
The best performance improvement I've ever seen is my performance when I turned off twitter :) |
|||
|
|
|
|
Converting all MySQL subqueries to use combination of joins and temporary tables. The improvement was unbelievable. |
|||
|
|
|
|
Removed VIEW STATE from an ASP.NET page. Page went from 800KB per request to about 10KB per request. That view state can be evil. |
|||
|
|
|
|
Can't remember the exact code but we changed this:
to
Never underestimate how slow I/O is. |
|||
|
|
|
|
Some time ago I had a column in an Oracle database, which had a value when the column had been processed, and was Of course there was an index on this column. But Oracle does (at least did in version 8) not store So a query like this
took hours, although it only returned a few records. We changed the null value to an arbitrary negative number:
I can't remember how fast it was, but it was incredible, a few minutes if not even faster. |
|||
|
|
|
|
Changing getPixel value from Bitmap object (.NET) to direct unsafe bit manpulation. The performance caused the method go from 4 minutes to 1 second. |
|||
|
|
|
|
After wondering why a window took so long to show up, I once removed the following line from a colleague's code
At some point this must have been meant to have the application wait for some other thread to finish, but that was not an issue anymore because the code had been refactored many times since then. |
|||
|
|
|
|
C# - I used Generic.List instead of ArrayList while migrating from database to database. It saved 6 minutes and a lot of unnecessary reboots. |
|||
|
|
|
|
Converting some Oracle Pro*C code to built-in PLSQL - yes, you read right convert a C function to PLSQL. The issue wasn't so much to do with the C code itself, I'm sure that runs fast. The problem is that the abstraction between Oracle and Pro*C is super slow. So, converting the one function sped the rest of it up by about 100 times. I should add that some Oracle SQL code was calling this external Pro*C code repeatedly. So bringing it into PLSQL meant less call overhead and faster execution. |
|||
|
|
|
|
Heeding the top-level question, probably the biggest improvement I've had for the smallest change would be to correctly size the settings of a MySQL server for the hardware it was on. The defaults for MySQL - even the 'huge' ones - are extremely conservative. In particular, several of the memory parameters (e.g. sort_buffer) can be increased a thousand times and this will give a significant boost of performance. And table_cache is often way too low. I've had it up at 1500 on some servers. |
|||
|
|
|
|
I was working with a very long DB2 query. It ran in the Test environment in 30 seconds, but in Production we had to cut it off after running all weekend due to the massive amount of data. The query was optimized to death and could not be made faster by structure alone. So we added this to one of its subjugate WHERE clauses:
Doing so caused the DB2 parser to add a couple additional SORTs to the execution path and ended up making it run in two hours. |
|||
|
|
The line
was changed to:
It improved performance by about 1400% as case sensitivity wasn't required. |
|||
|
|
|
|
Recently while writing a Java application which reads REST responses our team were using DOM based XML parsers, mainly because selecting things out by XPath is nice and easy to code. Bad move! We switched parsing and serialisation over to event-based XML classes (in our case StAX). It vastly improved the memory footprint of the application, which has a massive impact on scalability and sped up the processing by at least an order of magnitude. |
|||
|
|
Changing a SQL query against several million rows so that instead of
I had
fn_TrimDate being an ugly function that ripped off the time part of a datetime field. The query went from an average of 0.5 secs to being almost instananeous. |
|||
|
|
|
|
Replacing a frequently hit division by 4 to a bit shift operation. |
|||
|
|
|
|
I doubled the performance of an in memory matrix calculation by storing the matrix row-wise instead of column-wise. This improved cache locality. |
|||
|
|
|
|
Once I didn't change an application, but just "waved the wand" and the speed increased ten times! I ran CPAN update to upgrade to the newest versions of the Perl unofficial modules. This increased my speed due to a bugfix in one of the application-critical modules. |
|||
|
|
|
|
Spent less time on Stack Overflow for a day. |
|||
|
|
|
|
Added nusoap_base::setGlobalDebugLevel(0); in a SOAP Server written in PHP. It increased the performance of the SOAP server easily by a factor of five. What is most interesting is this isn't documented anywhere as far as I could tell, and I only came across it after reading an obscure mailing list post where someone suggested this. |
|||
|
|
|
|
Changing
to
Speed up the query executed against SQLMobile in something about 30x (measured) |
|||
|
|
