-
Notifications
You must be signed in to change notification settings - Fork 92
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
When opening vscode Maven Projects take about 11 seconds to appear #77
Comments
The extension recursively searches for There's also a setting entry BTW, does the issue only occurs after you upgrade it to v0.9.2? |
I don't know. If I got these commands correct, all files -
Trying to exclude
|
In your case I suggest that you exclude more files by adding items into the // Specifies filepath pattern of folders to exclude while searching for maven projects.
"maven.projects.excludedFolders": [
"**/.*",
"**/node_modules",
"**/target",
"**/bin"
], I'll evaluate and investigate the performance. |
@joshunger I'm refactoring part of the code, I find |
@Eskibear Awesome, thank you! |
Fixed in commit a7e54a8 I've test in my working directory with a bunch of projects. Using VS Code's API, it takes 1600-1800ms to search $ find . -type f -not -path "*node_modules*" | wc -l
23170 It will be shipped in v1.0.0, you can checkout the latest code if you want to try it now. |
released in v0.10.0 |
Describe the bug
When opening vscode Maven Projects take about 11 seconds to appear.
To Reproduce
pom.xml
files.Expected behavior
Would a second or two be acceptable?
Environments (please complete the following information as much as possible):
Screenshots
If applicable, add screenshots to help explain your problem.
Additional context
Add any other context about the problem here.
The text was updated successfully, but these errors were encountered: