I have a .NET application written in C#. My understanding is that the
default GC is the Workstation non-concurrent GC. I need predictability
more than I need low latency and would like to know if that is the
default and if so, how I can set my own application to use the
concurrent mode instead.
It would be nice if this was a setting somewhere in .NET. I ran across
some stuff on a configuration file but when I tried messing around with
this option, the configuration file seemed to be "consumed" every time
I ran the application which confused me. I'd appreciate any insight you
all might have.
Thanks.
> I have a .NET application written in C#. My understanding is that the
> default GC is the Workstation non-concurrent GC. I need predictability
> more than I need low latency and would like to know if that is the
> default and if so, how I can set my own application to use the
> concurrent mode instead.
<configuration>
<runtime>
<gcConcurrent enabled="true" />
</runtime>
</configuration>
Mujtaba.
"Chris Lyon [MSFT]" - 09 Feb 2005 20:06 GMT
See http://weblogs.asp.net/clyon/archive/2004/09/08/226981.aspx for more information.
-Chris
--------------------
>> I have a .NET application written in C#. My understanding is that the
>> default GC is the Workstation non-concurrent GC. I need predictability
[quoted text clipped - 9 lines]
>
>Mujtaba.

Signature
This posting is provided "AS IS" with no warranties, and confers no rights. Use of included script samples are subject to the terms specified at
http://www.microsoft.com/info/cpyright.htm
Note: For the benefit of the community-at-large, all responses to this message are best directed to the newsgroup/thread from which they originated.