Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Software for testing applications to increase performance

I'm searching for software to do benchmarking, analysis, performance of code and apps. Something like Intel VTune.

Can anyone give me some names, free or payed, targeting c# apps.

thanks

like image 685
Pedro Luz Avatar asked Dec 17 '25 18:12

Pedro Luz


2 Answers

Redgate Performance Profiler

...their Memory Profiler will undoubtedly help as well.

like image 102
Justin Niessner Avatar answered Dec 20 '25 06:12

Justin Niessner


It sounds like you have multiple purposes.

If you want to monitor the performance health of programs, benchmarks and profilers that measure are probably what you want.

If you need to make a program faster, and you have the source code for it, I think your best bet is to get something that samples the call stack and gives you line-level percent of wall-clock time. For this, don't look for high precision of timing. Look instead for high precision of pinpointing code that is responsible for high percentages of time. Especially in larger programs, these lines are function or method calls that you can find a way to avoid. Don't fall into the myth of thinking that the only problems are hotspots where the program counter lives, and don't fall into the myth that all I/O is necessary I/O.

There's a totally manual method that a few people use and works very well.

like image 36
Mike Dunlavey Avatar answered Dec 20 '25 07:12

Mike Dunlavey



Donate For Us

If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!