Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Free or inexpensive options for profiling / performance analysis for C# asp.net? [closed]

I know about Redgate's Ants Profiler which I hear is awesome but it's also $400. Any cheaper alternatives out there that will at least point me to where I might need to optimize my code?

like image 814
codette Avatar asked Jul 17 '09 22:07

codette


People also ask

What is C profiling?

The C Profiler tool enables the collection and display of execution profile data on C software source code bases of arbitrary size. It is a member of SD's family of Profiler tools.

What is a performance profiling tool?

Performance profilers are software development tools designed to help you analyze the performance of your applications and improve poorly performing sections of code.

What is profiling in Devops?

“Profiling” is a dynamic method of analyzing the complexity of a program, such as CPU utilization or the frequency and duration of function calls. With profiling, you can locate exactly which parts of your application are consuming the most resources.


2 Answers

EQATEC Profiler is free.

I haven't tried it myself, but it sounds ok and there are some positive testimonials on their site.

I'd be interested to hear the opinion of anyone who has actually used it.

like image 93
LukeH Avatar answered Nov 04 '22 04:11

LukeH


Dottrace is about half the price of Ants, and it's really good. Made by the same people that do ReSharper.

If you're just looking for a one-off optimization of your code, then you should go for Ants anyway, since it has a full-featured 15-day free trial, which should be enough to get a lot of optimization done.

like image 27
womp Avatar answered Nov 04 '22 05:11

womp