vote up 11 vote down star

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?

flag

14% accept rate

9 Answers

vote up 0 vote down

Chrome has some good tools built in for this.

link|flag
vote up 0 vote down

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).

link|flag
vote up 1 vote down

I find execution time to be the best measure.

link|flag
As opposed to what? I'm not sure I understand. – Pekka Dec 10 at 21:24
As opposed to the orignal posters question: "CPU Cycles, Memory Usage, Execution Time, etc.?" – snicker Dec 10 at 21:30
vote up 1 vote down

You might like to look at the YSlow plugin for Firefox.

link|flag
That's only going to tell you how long it takes to load. I think the question was more concerned with performance when it is running. – Sam Hasler Sep 24 '08 at 1:18
vote up 3 vote down

You could use this: http://getfirebug.com/js.html. It has a profiler for JavaScript.

link|flag
vote up 5 vote down

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.

link|flag
this is true, but profilers are good in case there is a coding problem that has nothing to do with a browser specific issue. – John Boker Sep 21 '08 at 17:02
Sure! Yeah they'll catch general "bad coding" problems and specific ones are great for doing the actual debugging, but for general use-case testing, you'll benefit from something that runs on all platforms. – Oli Sep 21 '08 at 19:02
+1 on the note that this is true, but having a profiler like Firebug is still great, if not essential, to find bottlenecks. – Pekka Dec 10 at 21:23
vote up 2 vote down

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.

link|flag
yes yes yes. I wish I could mod you up 2x ++1 – Byron Whitlock Dec 10 at 21:31
vote up 1 vote down

I think JavaScript performance (time) testing is quite enough. I found a very handy article about JavaScript performance testing here.

link|flag
vote up 0 vote down

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".

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.