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: Improve proxy performance #334

Open
3 tasks done
oSumAtrIX opened this issue Mar 7, 2025 · 4 comments · May be fixed by #329
Open
3 tasks done

perf: Improve proxy performance #334

oSumAtrIX opened this issue Mar 7, 2025 · 4 comments · May be fixed by #329
Labels
Feature request Requesting a new feature that's not implemented yet

Comments

@oSumAtrIX
Copy link
Member

Feature description

Right now, the proxy function is implemented like this:

Image

Make proxyPool a map for constant lookup.

Motivation

Proxy has linear time complexity and if you need to proxy many classes, it's quadratic. Making lookup constant would reduce complexity to linear for performance.

Acknowledgements

  • I have checked all open and closed feature requests and this is not a duplicate.
  • I have chosen an appropriate title.
  • All requested information has been provided properly.
@oSumAtrIX oSumAtrIX added the Feature request Requesting a new feature that's not implemented yet label Mar 7, 2025
@oSumAtrIX
Copy link
Member Author

@LisoUseInAIKyrios Does that make sense?

@oSumAtrIX oSumAtrIX linked a pull request Mar 7, 2025 that will close this issue
@LisoUseInAIKyrios
Copy link
Contributor

The change also fixes an existing bug, where if a patch modified a method, then a different patch fingerprint matches a different part of the same method, then the match indexes returned by the second fingerprint are incorrect (it returns the pattern indexes of the unmodified method).

#329 (comment)

The bug has existed for a long time, but that change fixes it.

@oSumAtrIX
Copy link
Member Author

The bug has existed for a long time, but that change fixes it.

It was considered a non-bug. I was under the impression of fingerprints matching the real source, but it makes sense to make it respect past changes.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Feature request Requesting a new feature that's not implemented yet
Projects
None yet
Development

Successfully merging a pull request may close this issue.

2 participants