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
On java 7 we can use MethodHandle's to invoke methods, constructors and getters/setters. This API is faster than pure reflection and will be even faster in Java 8.
Is this possible to adapt the reflection provider to use this new API?
The text was updated successfully, but these errors were encountered:
The reflection providers were created for situations like this. @asouza said he was going to take a look into it, but I don't know if he has made any progress on it.
Do you have a use case that this performance boost would be important? I'm thinking vraptor, but I don't really know enough of the internals to know if this would be the case. If it is, I believe I can spend a couple hours doing it (unless @asouza has already done it and forgot to tell us ;) )
On java 7 we can use MethodHandle's to invoke methods, constructors and getters/setters. This API is faster than pure reflection and will be even faster in Java 8.
Is this possible to adapt the reflection provider to use this new API?
The text was updated successfully, but these errors were encountered: