-
I have this line in my
While I find the startuptime format very difficult to understand, chatgpt tells me that this call is taking roughly 31ms, is this correct? Any way to reduce the time this call is taking? |
Beta Was this translation helpful? Give feedback.
Answered by
mrcjkb
Dec 23, 2024
Replies: 1 comment 2 replies
-
Hey 👋 For interpreting the output of You can disable the luarocks loader with the |
Beta Was this translation helpful? Give feedback.
2 replies
Answer selected by
craigmac
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hey 👋
For interpreting the output of
--startuptime
, see:h profd
.Your output is measuring roughly 30 ms, but keep in mind that profiling itself adds overhead, so the actual time spent is likely less.
You can disable the luarocks loader with the
enable_luarocks_loader
option, see:h rocks.config
.