CPU Cycles, Memory Usage, Execution Time, etc.?
Added: Is there a quantitative way of testing performance in JavaScript besides just perception of how fast the code runs?
|
CPU Cycles, Memory Usage, Execution Time, etc.? Added: Is there a quantitative way of testing performance in JavaScript besides just perception of how fast the code runs? |
|||||||
|
|
Profilers are definitely a good way to get numbers, but in my experience, perceived performance is all that matters to the user/client. For example, we had a project with an Ext accordion that expanded to show some data and then a few nested Ext grids. Everything was actually rendering pretty fast, no single operation took a long time, there was just a lot of information being rendered all at once, so it felt slow to the user. We 'fixed' this, not by switching to a faster component, or optimizing some method, but by rendering the data first, then rendering the grids with a setTimeout. So, the information appeared first, then the grids would pop into place a second later. Overall, it took slightly more processing time to do it that way, but to the user, the perceived performance was improved. |
|||||
|
|
We can always measure time taken by any function by simple date object.
|
|||||
|
|
Try jsPerf. It's an online javascript performance tool for benchmarking and comparing snippets of code. I use it all the time. |
|||
|
|
|
JSLitmus is a lightweight tool for creating ad-hoc JavaScript benchmark tests Let examine the performance between
What I did above is create a FireFox Performance Result
IE Performance Result
|
||||
|
Some people are suggesting specific plug-ins and/or browsers. I would not because they're only really useful for that one platform; a test run on Firefox will not translate accurately to IE7. Considering 99.999999% of sites have more than one browser visit them, you need to check performance on all the popular platforms. My suggestion would be to keep this in the JS. Create a benchmarking page with all your JS test on and time the execution. You could even have it AJAX-post the results back to you to keep it fully automated. Then just rinse and repeat over different platforms. |
|||||||||
|
|
You could use this: http://getfirebug.com/js.html. It has a profiler for JavaScript. |
||||
|
|
|
I think JavaScript performance (time) testing is quite enough. I found a very handy article about JavaScript performance testing here. |
||||
|
|
|
I find execution time to be the best measure. |
|||
|
Here is a simple function that displays the execution time of a passed in function.
|
|||
|
|
|
I usually just test javascript performance, how long script runs. jQuery Lover gave a good article link for testing javascript code performance, but the article only shows how to test how long your javascript code runs. I would also recommend reading article called "5 tips on improving your jQuery code while working with huge data sets". |
|||
|
|
|
You could use console.profile in firebug |
|||
|
|
|
The golden rule is to NOT under ANY circumstances lock your users browser. After that, I usually look at execution time, followed by memory usage (unless you're doing something crazy, in which case it could be a higher priority). |
|||
|
|
|
Responsiveness generally means that the page can react as fast as I can do stuff if I were the Flash. Don't make the Flash wait. Release early and often, and collect analytics. As soon as your code isn't crap, give it to some people to try out, and use analytics to measure (among other things) performance metrics that impact perceived responsiveness, specifically, time between user inputs. For example, when a user clicks on the "submit" button and a form appears, then starts typing into the form, how long between click and typing? If one form takes much longer than the rest, then there is a problem in the code or the UX design or both. |
|||||
|