Wednesday, October 5, 2011

CLR Profiler for .NET Framework 4

You read all this documentation saying you should use StringBuilder instead of String.Concat() when doing a lot of string concatenations and you probably say huh, it’s all fine, what do these guys know...

And then I ran my little app processing some application logs through the CLR Profiler - looking through the allocations a huge block of 259 MB allocations jumped at me! Looking at the app from outside with Process Explorer didn’t show much memory usage but that was probably the GC doing a lot of cleanup – the collections report shows it well.

Changing the code to use a StringBuilder was not that complicated and it reduced the amount of GC work and cut the processing time in half from 20 seconds down to 10 seconds! Still more to be done, but we’re on the good track now...

CLR Profiler for .NET Framework 4
http://www.microsoft.com/download/en/details.aspx?id=16273

* * *


CLR Profiler (before)



CLR Profiler (after)




No comments :

Post a Comment