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
I'm getting a lot of typechecking updates from the lsp being sent.. like every few seconds i get a notification about it.
after a little bit of this, sometimes ten mins, nvim just crashes. fsautocomplete process keeps running, keeps hogging up memory, then i have to go kill the process.
any ideas??
The text was updated successfully, but these errors were encountered:
For bigger projects there are some recommended settings. The conserve memory configuration lets the runtime compact more often and even compacts the Large Object Heap which is often a cause of issues because of large source files
I also recently implemented RoslynSource Text #1123 which you can add the switch --source-text-factory=RoslynSourceText to enable. This should have less Large Object Heap hits.
We do use the Server GC by default which is pretty aggressive at allocating memory. If it still seems like an issue you can play with certain environment variables like Heap count so you don't have as many heaps but still get some benefits of Server GC. Otherwise you can turn it off and use workstation but know that will come with some significant performance hits since FCS and by proxy FSAC are garbage collector intensive.
I'm getting a lot of typechecking updates from the lsp being sent.. like every few seconds i get a notification about it.
after a little bit of this, sometimes ten mins, nvim just crashes. fsautocomplete process keeps running, keeps hogging up memory, then i have to go kill the process.
any ideas??
The text was updated successfully, but these errors were encountered: