[perf] Optimize m.instrument/clj-collect!#1295
Open
alexander-yakushev wants to merge 2 commits into
Open
Conversation
06ed5b0 to
4910690
Compare
4910690 to
9b044f7
Compare
frenchy64
reviewed
Jul 2, 2026
Co-authored-by: Ambrose Bonnaire-Sergeant <ambrose@ambrosebs.com>
Collaborator
|
Is there any hope of factoring out a helper to improve readability while preserving perf? I'm thinking |
Contributor
Author
|
I've just tried it, but some of the efficiency is gone this way because IKVReduce doesn't play along with eductions and such, and the transducing in general. You would need to iterate over MapEntries in a map, and that is an overheady thing on its own. |
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.
This is minor, but
filter-keyis so inefficient that it got my attention. On a project like Metabase that has a few thousand namespaces, calling(clj-collect! {:ns (all-ns)})generates a lot of unnecessary garbage and slightly slows down the initialization.