Welcome to the Java Programming Forums


The professional, friendly Java community. 21,500 members and growing!


The Java Programming Forums are a community of Java programmers from all around the World. Our members have a wide range of skills and they all have one thing in common: A passion to learn and code Java. We invite beginner Java programmers right through to Java professionals to post here and share your knowledge. Become a part of the community, help others, expand your knowledge of Java and enjoy talking with like minded people. Registration is quick and best of all free. We look forward to meeting you.


>> REGISTER NOW TO START POSTING


Members have full access to the forums. Advertisements are removed for registered users.

Results 1 to 2 of 2

Thread: In which region intern strings are stored?

  1. #1
    Member
    Join Date
    Nov 2017
    Location
    USA
    Posts
    137
    Thanks
    6
    Thanked 1 Time in 1 Post

    Default In which region intern strings are stored?



    intern() is an interesting function in java.lang.String object. intern() function eliminates duplicate string objects from the application and has potential to reduce overall memory consumption of your application. To understand how string intern() function works you may refer to this interesting blog. Intern strings are stored in a string pool in the JVM memory. JVM Memory has following regions:

    a. Heap region (i.e. Young & Old generation)

    b. Metaspace

    c. Others region



    Fig: JVM memory regions

    To learn more about what gets stored in each of the JVM memory regions, you may refer to this video clip. In this post let’s learn through practical examples, in which region is the intern string pool stored.

    Intern Strings stored in JVM heap memory
    In earlier java versions from 1 to 6, intern strings are stored in the Perm Generation region of the Memory. However, starting from Java 7 intern strings are stored in the Heap region (i.e. which is basically the young & old generation). To confirm this theory, we conducted a simple experiment.

    String intern() sample program
    To facilitate our study, we wrote this simple java program. Intent of this program is to create a very large intern string pool.

    public class InternRegionDemo {
     
       private static List<String> datas = new ArrayList<>(10_000_000);
     
       public static void main(String args[]) throws Exception {
     
          BufferedReader reader = new BufferedReader(new FileReader("C:\\workspace\\fully-random-data.txt"));
          String data = reader.readLine();
          while (data != null) {
     
             data = reader.readLine().intern();
             datas.add(data);
          }
     
          reader.close();   
       }   
    }
    I request you to review the above source code, before reading further. It’s a simple program. If you notice ‘InternRegionDemo’ program reads each line at a time from the ‘fully-random-data.txt’ & then invokes intern() operation on the read data. ‘fully-random-data.txt’ basically contains 10 million unique UUID (Universally Unique Identifier) strings in this file. String returned by the intern() function is then added to the ‘datas’ ArrayList. Since intern() operation is invoked on the 10 million unique strings, the string intern pool will contain 10 million string objects.

    Garbage Collection Study
    We enabled Garbage collection on the above program and ran it. Because Garbage collection log will give clear indication on which region intern string objects are stored.

    You may consider enabling Garbage collection logs on all your production instances by passing the JVM arguments mentioned here. Enabling garbage collection log doesn't add noticeable overhead to your application, thus it’s recommended to keep it ON all the production JVM instances, because of its great benefits
    Once program execution completed, we uploaded the generated Garbage collection log file into the GCeasy tool, an online garbage collection log analysis tool. Here is the Garbage Collection log analysis report generated by this tool

    Here are the key observations from the report:

    a. Below is the Heap usage graph from the report generated by GCeasy. You can notice that the heap region’s memory is continuously growing all the way till 950MB until the program terminates. Basically, the Heap usage graph in the report indicates the JVM’s heap region’s memory utilization.



    Fig: Heap region memory graph from above application generated by GCeasy

    b. If you notice, there is no Metaspace usage graph in the report. It indicates there was no change in the Metaspace region. If there would have been change in the Metaspace region, Metaspace graph would be present in the report. Here is a GC log analysis report of an application, where there was heavy churn in the Metaspace region. When there is a churn in the Metaspace region, the Metaspace graph will be reported by the tool.



    Fig: Metaspace region memory graph from a different application generated by GCeasy

    c. ‘Others’ region in the JVM memory contains only threads, code cache, socket buffers, GC stats and JNI. They don’t store any of the objects created by the application.

    Conclusion
    Based on this simple study we can conclude that intern string pools are stored in the JVM’s heap region of the memory, and they are NOT stored in the ‘Metaspace’ or the ‘Others’ region.

    VIDEO
    https://youtu.be/vdCpErO-lTU

  2. #2
    Super Moderator Norm's Avatar
    Join Date
    May 2010
    Location
    Eastern Florida
    Posts
    25,042
    Thanks
    63
    Thanked 2,708 Times in 2,658 Posts

    Default Re: In which region intern strings are stored?

    Why does any programmer need to know this?
    If you don't understand my answer, don't ignore it, ask a question.

Similar Threads

  1. Java String intern(): Interesting Q & A
    By Ram Lakshmanan in forum Java Programming Tutorials
    Replies: 0
    Last Post: August 26th, 2022, 04:46 AM
  2. Sorting lowercase strings before uppercase strings
    By keepStriving in forum Java Theory & Questions
    Replies: 4
    Last Post: March 26th, 2014, 03:33 PM
  3. Replies: 9
    Last Post: December 31st, 2011, 01:22 AM
  4. Value Not Being Stored
    By aussiemcgr in forum What's Wrong With My Code?
    Replies: 0
    Last Post: August 16th, 2010, 09:38 AM