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
Note: Unfortunately, things are not as simple. After adding the app.config file shown in the #57, the VsChromium server memory usage grew by almost 20% on a 72 Core machine (192GB RAM).
When loading a project with more than 1,500,000 files, memory usage (Working Set and Commit size) grew by 1.2GB and 2.2GB respectively.
As a .NET app, the VsChromium server process will only use one process group by default. This limits the # of cores to 64 maximum.
According to https://docs.microsoft.com/en-us/dotnet/framework/configure-apps/file-schema/runtime/thread-useallcpugroups-element, a simple change to the
app.config
file enables support for more than 64 logical processors:app.config
The text was updated successfully, but these errors were encountered: