Updates 202601#60
Merged
Merged
Conversation
Forgotten in df66255
Forgotten in df66255
If destination file extension is .fish, so variable will be happened as a fish variable with "set".
To increase fish loading speed: - avoid loading environment vars from bash syntax with __fenv.main function - avoid loading aliases from bash syntax with __fenv.main function - remove some path retrieval commands - use universal variables to define LUAROCKS only one time Profiling was done with the following command: ```bash fish --profile-startup=/tmp/fish.profile -c exit` ``` Time (μs) Sum (μs) Command 201946 201946 ----> luarocks path --lr-path 168651 168651 ----> luarocks path --lr-cpath **Final global result** Before: ```bash ❯ time fish -c exit ________________________________________________________ Executed in 636.46 millis fish external usr time 139.16 millis 0.29 millis 138.87 millis sys time 145.31 millis 1.69 millis 143.62 millis ``` After: ``` ❯ time fish -c exit ________________________________________________________ Executed in 57.31 millis fish external usr time 17.39 millis 0.26 millis 17.13 millis sys time 22.02 millis 1.15 millis 20.88 millis ```
Search helm release versions
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
🐰