From a1535d3bb7177f15afc6495709475bd738125ab6 Mon Sep 17 00:00:00 2001 From: Jimmy Byrd Date: Sun, 23 Jul 2023 13:14:22 -0400 Subject: [PATCH] Adds GCNoAffinitize setting (#23) --- content/Editors/Code/options.md | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/content/Editors/Code/options.md b/content/Editors/Code/options.md index d259eec..ab0aba7 100644 --- a/content/Editors/Code/options.md +++ b/content/Editors/Code/options.md @@ -99,6 +99,15 @@ Limits the number of [heaps](https://learn.microsoft.com/en-us/dotnet/standard/g **Default:** `2` +--- +#### `Fsharp.fsac.gc.noAffinitize` + +Specifies whether to [affinitize](https://learn.microsoft.com/en-us/dotnet/core/runtime-config/garbage-collector#affinitize) garbage collection threads with processors. To affinitize a GC thread means that it can only run on its specific CPU.. Applies to server garbage collection only. See [GCNoAffinitize](https://learn.microsoft.com/en-us/dotnet/framework/configure-apps/file-schema/runtime/gcnoaffinitize-element#remarks) for more details. Requires restart. + +**Type:** `boolean` + +**Default:** `true` + --- #### `FSharp.fsac.gc.server`