You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
<value>This setting sets the minimum number of threads used by the application's ThreadPool. This can improve the performance of e.g. the IP scanner or port scanner.
3294
-
The value is added to the default settings.
3295
-
3296
-
The value 0 leaves the default settings (number of CPU threads).
3293
+
<value>This setting specifies the minimum number of threads that will be created from the application's ThreadPool on demand. This can improve the performance for example of the IP scanner or port scanner.
3294
+
3295
+
The value is added to the default min. threads (number of CPU threads). The value 0 leaves the default settings. If the value is higher than the default max. threads of the ThreadPool, this value is used.
3297
3296
3298
3297
If the value is too high, performance problems may occur.
_log.Info($"ThreadPool min threads set to workerThreads: {workerThreads} + {SettingsManager.Current.General_ThreadPoolAdditionalMinThreads}, completionPortThreads: {completionPortThreads} + {SettingsManager.Current.General_ThreadPoolAdditionalMinThreads}.");
_log.Info($"ThreadPool min threads set to: workerThreads: {workerThreadsMinNew}, completionPortThreads: {completionPortThreadsMinNew}");
188
198
else
189
-
_log.Warn($"ThreadPool min thread could not be set to workerThreads: {workerThreads} + {SettingsManager.Current.General_ThreadPoolAdditionalMinThreads}, completionPortThreads: {completionPortThreads} + {SettingsManager.Current.General_ThreadPoolAdditionalMinThreads}.");
199
+
_log.Warn($"ThreadPool min threads could not be set to workerThreads: {workerThreadsMinNew}, completionPortThreads: {completionPortThreadsMinNew}");
0 commit comments