Hi,
I'm testing an app that reads thousands of small objects and sends then back to the client through remoting.
Using ProcessExplorer from SysInternals I see the ".NET CLR Memory\% Time in GC" is bigger than 50% under heavy load.
Does it mean 50% or even more of the time is being spent on the GC?
If so, how can I improve performance? An obvious answer is: not creating so many objects but, how can I do that? Would "structs" work better?
Thanks