Skip to content
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

perf: vim.fn.executable is slow #1585

Closed
rewhile opened this issue Jun 29, 2024 · 8 comments · Fixed by #1586
Closed

perf: vim.fn.executable is slow #1585

rewhile opened this issue Jun 29, 2024 · 8 comments · Fixed by #1586

Comments

@rewhile
Copy link
Contributor

rewhile commented Jun 29, 2024

After lazy.nvim 11.0 was released my config startuptime went from 25ms to 85ms

I have traced back the slowness due to this line:

hererocks = vim.fn.executable("luarocks") == 0,

> time nvim --headless -c ':lua local s = vim.loop.hrtime() vim.fn.executable("luarocks") print(string.format("%fms\n", (vim.loop.hrtime() - s) / 1000000))' +q

60.269405ms
nvim --headless -c  +q  0.04s user 0.03s system 39% cpu 0.184 total
@folke
Copy link
Owner

folke commented Jun 29, 2024

That is super weird, since vim.fn.executable should be really fast (and is negligible in my setup).
What OS are you on?

Also, can you run the same test, but with vim.uv.exepath instead?

@folke
Copy link
Owner

folke commented Jun 29, 2024

On my system:

❯ time nvim --headless -c ':lua local s = vim.loop.hrtime() vim.fn.executable("luarocks") print(string.format("%fms\n", (vim.loop.hrtime() - s) / 1000000))' +q

0.032316ms

@rewhile
Copy link
Contributor Author

rewhile commented Jun 29, 2024

vim.uv.exepath seems to be very fast :)

EDIT: It doesn't seem to have the same behavior

time nvim --headless -c ':lua local s = vim.loop.hrtime() vim.uv.exepath("luarocks") print(string.format("%fms\n", (vim.loop.hrtime() - s) / 1000000))' +q

0.009027ms
nvim --headless -c  +q  0.02s user 0.03s system 45% cpu 0.107 total

@folke
Copy link
Owner

folke commented Jun 29, 2024

Allright, I can change it I guess, but you should still figure out why vim.fn.executable is that slow on your machine.
That really doesn't seem right.

That function is used by a lot of plugins and internally by Neovim.

Is it fast when checking a binary that you do have on your path?

@folke
Copy link
Owner

folke commented Jun 29, 2024

nm, vim.uv.exepath doesn't do what vim.fn.executable does

@folke
Copy link
Owner

folke commented Jun 29, 2024

Closing, since this not a lazy.nvim issue.

For more info, see
https://neovim.io/doc/user/builtin.html#executable()

@folke folke closed this as not planned Won't fix, can't repro, duplicate, stale Jun 29, 2024
@rewhile
Copy link
Contributor Author

rewhile commented Jun 29, 2024

Ok after I turned off windows WSL's appendWindowsPath it is fast again

time nvim --headless -c ':lua local s = vim.loop.hrtime() vim.fn.executable("luarocks") print(string.format("%fms\n", (vim.loop.hrtime() - s) / 1000000))' +q

0.037370ms
nvim --headless -c  +q  0.03s user 0.00s system 67% cpu 0.048 total

However, since this is the default behavior of WSL it might still be worth it to defer this function.

@folke folke reopened this Jun 29, 2024
@folke folke closed this as completed in 9ab3061 Jun 29, 2024
@folke
Copy link
Owner

folke commented Jun 29, 2024

I just pushed a changed so that that check only happens when needed

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging a pull request may close this issue.

2 participants