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
{{ message }}
This repository was archived by the owner on Jul 27, 2022. It is now read-only.
The implementation of DynamicHelper is very slow and does a method lookup using the Java Reflection API every time a method is invoked on an expression of dynamic type (see performance results of benchmark tracer).
Use caching, the Java Method Handle API, or generate byte code to take advantage of invokedynamic.