asp.net - Experience using gcServer="true" to set garbage collector for .NET -
Does anyone have an Aspen. Using the configuration, the configuration is used to enable the customized garbage collector for a multi-processor machine:
& lt; GcServer enabled = "true" /> & Lt; GcConcurrent enabled = "true" /> Did any improvements to your site's performance have improved?
Have any problems been noticed?
First of all, concurrent and server are mutually exclusive options. See some details on server GC misconceptions However, by default, ASP.Net hosts the server GC (see), so it will not make any difference.
I recommend sticking to the server instead of concurrently for an ASP.NET website. For user-mode applications, the concurrent GC is responding to the user, because the server will cause the GC "hang".
I have used the server GC, and seen significant improvements in some situations.
The server mode helps the GC user application, though, if you are doing huge work with the user's application, the memory pool is becoming more fragmented.
Comments
Post a Comment