-
Notifications
You must be signed in to change notification settings - Fork 29.6k
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] searching for a file by ctrl+p is really really slow #74598
Comments
already exlcuded the out folder and .repo folder: "files.exclude": {
"out/*": true,
".repo/*":true,
".CCACHE/*":true,
"cts/*":true,
},
"files.watcherExclude": {
"out/*": true,
".repo/*":true,
".CCACHE/*":true,
"cts/*":true,
}, |
How long does it take? Is your project on a networked file share or something like that? Is text search also slow? Also have some tips here: https://github.com/microsoft/vscode/wiki/Search-Issues#slow-search-rg-running-for-a-long-time-or-consuming-lots-of-cpumemory |
tooks long enough (more than 10 sec and no any search results) before I give up |
@roblourens Thanks for the reply. After googled, found vscode native file picker uses |
Version: 1.34.0
Commit: a622c65
Date: 2019-05-15T21:55:35.507Z
Electron: 3.1.8
Chrome: 66.0.3359.181
Node.js: 10.2.0
V8: 6.6.346.32
OS: Linux x64 4.15.0-47-generic
Disk type: HDD
File system: ext4
Project: Android/AOSP
Searching for certain java files is too slooooow!
BTW, using
find -type -f -name ...
in terminal only takes 4~5 seconds;Really don't get the reason why vscode could be this slow? Doesn't it cache? then what it is doing exactly during file indexing when launching a project?
The text was updated successfully, but these errors were encountered: