-
Notifications
You must be signed in to change notification settings - Fork 54
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Performance bottleneck in Ui Thread #907
Comments
org.eclipse.lsp4e.LSPEclipseUtils.findResourceFor () |
eclipse.buildId=4.31.0.I20240204-1800 |
findResourceFor is a basic workspace query, that doesn't deal with IO, so I've retitled the issue. Moreover, this particular method cannot be optimized as about all of its execution time is spent in Workspace.findFilesForLocationURI. |
i have the same thing, i just need to have the outline view closed because with it it is very hard to work inside editors.. |
The next step would be to refactor the |
during sampling full build of eclipse platform workspace i saw this:
callstack:
at best UI thread would not perform I/O at all, but at east it should not call super slow java.io.File.getCanonicalPath ()
The text was updated successfully, but these errors were encountered: