Installing a GC Server or Workstation

How can I configure the application or even the entire machine to use either the CLR garbage collection server or workstation layout?

+4
source share
2 answers

Take a look here .

I recommend giving a series of blog posts well-read - very informative.

+4
source

I should mention that I found two ways to handle this: either for the entire application using the .config file (application or machine) using the gcConcurrent and gcServer elements, or this can be done at the code level using GCSettings.LatencyMode .

0
source

Source: https://habr.com/ru/post/1277458/


All Articles