You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Right now, the proxy function is implemented like this:
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.
The text was updated successfully, but these errors were encountered:
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).
Feature description
Right now, the proxy function is implemented like this:
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
The text was updated successfully, but these errors were encountered: