Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What is profiling?

Tags:

profiling

I am new to this and is trying to learn.

  • What is profiling?
  • What are various free tools for profiling .NET, Java EE?
  • Can Javascript be profiled?
  • If so, by which tool?
  • And lastly, how do these profilers work?
like image 318
Ramesh Avatar asked Mar 06 '09 18:03

Ramesh


2 Answers

Profiling measures how long various parts of the code take to run. Javascript can be profiled with firebug: http://getfirebug.com/js.html

like image 156
Jeff Dickey Avatar answered Sep 17 '22 13:09

Jeff Dickey


profiling is measuring the execution times and correlating it with various classes/methods/functions. (see the link I gave to the wikipedia page for some commentary on how profilers can work)

like image 41
Jason S Avatar answered Sep 18 '22 13:09

Jason S