VOOZH about

URL: https://www.javacodegeeks.com/2018/05/faster-repeated-access-to-java-class-names-coming-to-java.html

⇱ Faster Repeated Access to Java Class Names Coming to Java? - Java Code Geeks


Claes Redestad has posted the message “RRF: 8187123: (reflect) Class#getCanonicalName and Class#getSimpleName is a part of performance issue” on the core-libs-dev mailing list in which he requests review of a proposed change “to enable caching of getCanonicalName and getSimpleName, repeated calls of which has been reported to be a performance bottleneck.” He adds that “the caching improves performance of these methods by up to 20x.”

An obvious solution to the performance issue might have been to add the name of the class as a field to the Class class definition, but Redestad points out in the associated bug JDK-8187123 that “we should avoid adding more fields to java.lang.Class.” Instead, this bug was addressed by the idea to “piggy back off other reflection information that is cached in ReflectionData.”

ReflectionData is a nested (private static) class defined within the Class class. The Class class’s reference to ReflectionData is defined as:

private volatile transient SoftReference<ReflectionData<T>> reflectionData;

The Class instance holds a soft reference (java.lang.ref.SoftReference) to the instance of nested class ReflectionData. The class-level Javadoc for SoftReference states that a soft reference is “cleared at the discretion of the garbage collector in response to memory demand” and that a soft reference is “most often used to implement memory-sensitive caches.” This seems like a nice solution to balance performance and memory concerns.

The mailing list message references a link to the proposed changes to Class.java. Reviewing those changes, one can quickly see how the proposed code changes add three new Strings to the attributes contained in an ReflectionData instance to represent canonical name, simple name, and type name. Of course, the three methods that provide access to those details [getCanonicalName(), getSimpleName(), and getTypeName()] are changed to use these values.

As of this writing, JDK-8187123 has not been associated with a particular Java release.

Published on Java Code Geeks with permission by Dustin Marx, partner at our JCG program. See the original article here: Faster Repeated Access to Java Class Names Coming to Java?

Opinions expressed by Java Code Geeks contributors are their own.

Do you want to know how to develop your skillset to become a Java Rockstar?
Subscribe to our newsletter to start Rocking right now!
To get you started we give you our best selling eBooks for FREE!
1. JPA Mini Book
2. JVM Troubleshooting Guide
3. JUnit Tutorial for Unit Testing
4. Java Annotations Tutorial
5. Java Interview Questions
6. Spring Interview Questions
7. Android UI Design
and many more ....
I agree to the Terms and Privacy Policy

Thank you!

We will contact you soon.

👁 Photo of Dustin Marx
Dustin Marx
May 4th, 2018Last Updated: May 4th, 2018
0 82 1 minute read
Subscribe

This site uses Akismet to reduce spam. Learn how your comment data is processed.

0 Comments
Oldest
Newest Most Voted
Back to top button
Close
wpDiscuz