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

Micro performance optimisations #32

Merged
merged 6 commits into from
Feb 17, 2025
Merged

Conversation

joeldrapper
Copy link
Contributor

I was nerd-sniped when I spotted bench.rb in the repo and I made a few changes. I think the behaviour is the same as before. At least all the original tests still pass.

I had to fix the benchmark script, which I think was using an older API. I also made it executable so you can run it with bundle exec ./bench.rb and I made it enable YJIT.

Each optimisation is in its own commit. The overall improvement is about 13%.

  • rendering only defaults was 683.473k now 774.274k IPS
  • rendering with overrides was 628.236k now 712.929k IPS

Comment on lines -49 to +60
if (candidate.keys - [:class, :slot]).all? { |key| criteria[key] == candidate[key] }
result << candidate[:class]
match = false

candidate.each_key do |key|
next if key == :class || key == :slot
match = criteria[key] == candidate[key]
break unless match
end

result << candidate[:class] if match
Copy link
Contributor Author

@joeldrapper joeldrapper Feb 15, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This is the most impactful change. I think this is hit quite a lot when rendering. Using each_key means we can avoid allocating an array of the keys.

@adrianthedev adrianthedev merged commit 8f9a97f into avo-hq:main Feb 17, 2025
8 checks passed
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 this pull request may close these issues.

2 participants