Is there a memory efficient replacement of java.lang.String? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-22T04:53:53Z http://stackoverflow.com/feeds/question/231051 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/231051/is-there-a-memory-efficient-replacement-of-java-lang-string 9 Is there a memory efficient replacement of java.lang.String? the.duckman 2008-10-23T19:13:37Z 2008-10-26T04:00:27Z <p>After reading <a href="http://www.javaworld.com/javaworld/javatips/jw-javatip130.html?page=2" rel="nofollow">this old article</a> measuring the memory consumption of several object types, I was amazed to see how much memory <code>Strings</code> use in Java:</p> <pre><code>length: 0, {class java.lang.String} size = 40 bytes length: 7, {class java.lang.String} size = 56 bytes </code></pre> <p>While the article has some tips to minimize this, I did not find them entirely satisfying. It seems to be wasteful to use <code>char[]</code> for storing the data. The obvious improvement for most western languages would be to use <code>byte[]</code> and an encoding like UTF-8 instead, as you only need a single byte to store the most frequent characters then instead of two bytes.</p> <p>Of course one could use <code>String.getBytes("UTF-8")</code> and <code>new String(bytes, "UTF-8")</code>. Even the overhead of the String instance itself would be gone. But then there you lose very handy methods like <code>equals()</code>, <code>hashCode()</code>, <code>length()</code>, ...</p> <p>Sun has a <a href="http://www.freepatentsonline.com/6751790.html" rel="nofollow">patent</a> on <code>byte[]</code> representation of Strings, as far as I can tell. </p> <blockquote> <p><strong>Frameworks for efficient representation of string objects in Java programming environments</strong><br /> ... The techniques can be implemented to create Java string objects as arrays of one-byte characters when it is appropriate ...</p> </blockquote> <p>But I failed to find an API for that patent.</p> <p>Why do I care?<br /> In most cases I don't. But I worked on applications with huge caches, containing lots of Strings, which would have benefitted from using the memory more efficiently.</p> <p>Does anybody know of such an API? Or is there another way to keep your memory footprint for Strings small, even at the cost of CPU performance or uglier API?</p> <p>Please don't repeat the suggestions from the above article:</p> <ul> <li>own variant of <code>String.intern()</code> (possibly with <code>SoftReferences</code>)</li> <li>storing a single <code>char[]</code> and exploiting the current <code>String.subString(.)</code> implementation to avoid data copying (nasty ;)</li> </ul> <p><strong>Update</strong></p> <p>I ran the code from the article on Sun's current JVM (1.6.0_10). It yielded the same results as in 2002. </p> http://stackoverflow.com/questions/231051/is-there-a-memory-efficient-replacement-of-java-lang-string/231067#231067 2 Answer by FlySwat for Is there a memory efficient replacement of java.lang.String? FlySwat 2008-10-23T19:17:13Z 2008-10-23T19:17:13Z <p>Out of curiosity, is the few bytes saved really worth it?</p> <p>Normally, I suggest ditching strings for performance reasons, in favor of StringBuffer (Remember, Strings are immutable).</p> <p>Are you seriously exhausting your heap from string references?</p> http://stackoverflow.com/questions/231051/is-there-a-memory-efficient-replacement-of-java-lang-string/231074#231074 1 Answer by jsight for Is there a memory efficient replacement of java.lang.String? jsight 2008-10-23T19:19:36Z 2008-10-23T19:19:36Z <p>Just compress them all with gzip. :) Just kidding... but I have seen stranger things, and it would give you much smaller data at significant CPU expense.</p> <p>The only other String implementations that I'm aware of are the ones in the Javolution classes. I don't think that they are more memory efficient, though:</p> <p><a href="http://www.javolution.com/api/javolution/text/Text.html" rel="nofollow">http://www.javolution.com/api/javolution/text/Text.html</a><br /> <a href="http://www.javolution.com/api/javolution/text/TextBuilder.html" rel="nofollow">http://www.javolution.com/api/javolution/text/TextBuilder.html</a></p> http://stackoverflow.com/questions/231051/is-there-a-memory-efficient-replacement-of-java-lang-string/231180#231180 0 Answer by Null303 for Is there a memory efficient replacement of java.lang.String? Null303 2008-10-23T19:45:02Z 2008-10-23T19:45:02Z <p>If you can predict the frequencies of the chars you will be using, you can use some kind of Huffman code implementation, I am thinking of something like this:</p> <pre><code>class HString: String toString(); // Anything necessary to use it in Maps, Collections //and all common string operations. class HStringManager: void setHuffmanTree( Tree hTree ); void setHuffmanTree( String sampleText ); HString create(String str); </code></pre> <p>I hope my code is self explanatory.</p> http://stackoverflow.com/questions/231051/is-there-a-memory-efficient-replacement-of-java-lang-string/231227#231227 7 Answer by matt b for Is there a memory efficient replacement of java.lang.String? matt b 2008-10-23T19:56:16Z 2008-10-23T19:56:16Z <p>I think you should be very cautious about basing any ideas and/or assumptions off of a javaworld.com article from 2002. There have been many, many changes to the compiler and JVM in the six years since then. At the very least, test your hypothesis and solution against a modern JVM first to make sure that the solution is even worth the effort.</p> http://stackoverflow.com/questions/231051/is-there-a-memory-efficient-replacement-of-java-lang-string/231291#231291 1 Answer by nkr1pt for Is there a memory efficient replacement of java.lang.String? nkr1pt 2008-10-23T20:09:16Z 2008-10-23T20:09:16Z <p>I believe that Strings are less memory intensive for some time now, because the Java engineers have implemented the flyweight design pattern to share as much as possible. In fact Strings that have the same value point to the very same object in memory I believe.</p> http://stackoverflow.com/questions/231051/is-there-a-memory-efficient-replacement-of-java-lang-string/231352#231352 0 Answer by Sam Stokes for Is there a memory efficient replacement of java.lang.String? Sam Stokes 2008-10-23T20:26:07Z 2008-10-23T20:26:07Z <p>You said not to repeat the article's suggestion of rolling your own interning scheme, but what's wrong with <code>String.intern</code> itself? The article contains the following throwaway remark:</p> <blockquote> <p>Numerous reasons exist to avoid the String.intern() method. One is that few modern JVMs can intern large amounts of data.</p> </blockquote> <p>But even if the memory usage figures from 2002 still hold six years later, I'd be surprised if no progress has been made on how much data JVMs can intern.</p> <p>This isn't purely a rhetorical question - I'm interested to know if there are good reasons to avoid it. Is it implemented inefficiently for highly-multithreaded use? Does it fill up some special JVM-specific area of the heap? Do you really have hundreds of megabytes of unique strings (so interning would be useless anyway)?</p> http://stackoverflow.com/questions/231051/is-there-a-memory-efficient-replacement-of-java-lang-string/231404#231404 1 Answer by Bill K for Is there a memory efficient replacement of java.lang.String? Bill K 2008-10-23T20:37:45Z 2008-10-23T20:37:45Z <p>There is the overhead of creating an object (at least a dispatch table), the overhead of the fact that it uses 2 bytes per letter, and the overhead of a few extra variables in there that are created to actually improve speed and memory usage in many cases.</p> <p>If you are going to use OO programming, this is the cost of having clear, usable, maintainable code.</p> <p>For an answer besides the obvious (which is that if memory usage is that important, you should probably be using C), you could implement your own Strings with an internal representation in BCD byte-arrays.</p> <p>That actually sounds fun, I might do it just for kicks :)</p> <p>A Java array takes 2 bytes per item. A BCD encoded digit takes 6 bits per letter IIRC, making your strings significantly smaller. There would be a little conversion cost in time, but not too bad really. The really big problem is that you'd have to convert to string to do anything with it.</p> <p>You still have the overhead of an object instance to worry about... but that would be better addressed by revamping your design than trying to eliminate instances.</p> <p>Finally a note. I'm completely against deploying anything like this unless you have 3 things:</p> <ul> <li>An implementation done the most readable way</li> <li>Test results and requirements showing how that implementation doesn't meet requirements</li> <li>Test results on how the "improved" implementation DOES meet requirements.</li> </ul> <p>Without all three of those, I'd kick any optimized solution a developer presented to me.</p> http://stackoverflow.com/questions/231051/is-there-a-memory-efficient-replacement-of-java-lang-string/231474#231474 1 Answer by Mecki for Is there a memory efficient replacement of java.lang.String? Mecki 2008-10-23T20:51:58Z 2008-10-23T20:51:58Z <p>Java chose UTF-16 for a compromise of speed and storage size. Processing UTF-8 data is much more PITA than processing UTF-16 data (e.g. when trying to find the position of character X in the byte array, how are you going to do so in a fast manner, if every character can have one, two, three or even up to six bytes? Ever thought about that? Going over the string byte by byte is not really fast, you see?). Of course UTF-32 would be easiest to process, but waste twice the storage space. Things have changed since the early Unicode days. Now certain characters need 4 byte, even when UTF-16 is used. Handling these correctly make UTF-16 almost equally bad as UTF-8.</p> <p>Anyway, rest assured that if you implement a String class with an internal storage that uses UTF-8, you might win some memory, but you will lose processing speed for many string methods. Also your argument is a way too limited point of view. Your argument will not hold true for someone in Japan, since Japanese characters will not be smaller in UTF-8 than in UTF-16 (actually they will take 3 bytes in UTF-8, while they are only two bytes in UTF-16). I don't understand why programmers in such a global world like today with the omnipresent Internet still talk about "western languages", as if this is all that would count, as if only the western world has computers and the rest of it lives in caves. Sooner or later any application gets bitten by the fact that it fails to effectively process non-western characters.</p> http://stackoverflow.com/questions/231051/is-there-a-memory-efficient-replacement-of-java-lang-string/231490#231490 3 Answer by benjismith for Is there a memory efficient replacement of java.lang.String? benjismith 2008-10-23T20:54:57Z 2008-10-23T20:54:57Z <p>An internal UTF-8 encoding has its advantages (such as the smaller memory footprint that you pointed out), but it has disadvantages too.</p> <p>For example, determining the character-length (rather than the byte-length) of a UTF-8 encoded string is an O(n) operation. In a java string, the cost of determining the character-length is O(1), while generating the UTF-8 representation is O(n).</p> <p>It's all about priorities.</p> <p>Data-structure design can often be seen as a tradeoff between speed and space. In this case, I think the designers of the Java string API made a choice based on these criteria:</p> <ul> <li><p>The String class must support all possible unicode characters.</p></li> <li><p>Although unicode defines 1 byte, 2 byte, and 4-byte variants, the 4-byte characters are (in practice) pretty rare, so it's okay to represent them as surrogate pairs. That's why java uses a 2-byte char primitive.</p></li> <li><p>When people call length(), indexOf(), and charAt() methods, they're interested in the character position, not the byte position. In order to create fast implementations of these methods, it's necessary to avoid the internal UTF-8 encoding.</p></li> <li><p>Languages like C++ make the programmer's life more complicated by defining three different character types and forcing the programmer to choose between them. Most programmers start off using simple ASCII strings, but when they eventually need to support international characters, the process of modifying the code to use multibyte characters is extremely painful. I think the Java designers made an excellent compromise choice by saying that all strings consist of 2-byte characters.</p></li> </ul> http://stackoverflow.com/questions/231051/is-there-a-memory-efficient-replacement-of-java-lang-string/231608#231608 7 Answer by Stephen Denne for Is there a memory efficient replacement of java.lang.String? Stephen Denne 2008-10-23T21:32:25Z 2008-10-23T21:32:25Z <p>The article points out two things:</p> <ol> <li>Character arrays increase in chunks of 8 bytes.</li> <li>There is a large difference in size between char[] and String objects.</li> </ol> <p>The overhead is due to including a char[] object reference, and three ints: an offset, a length, and space for storing the String's hashcode, plus the standard overhead of simply being an object.</p> <p>Slightly different from String.intern(), or a character array used by String.substring() is using a single char[] for all Strings, this means you do not need to store the object reference in your wrapper String-like object. You would still need the offset, and you introduce a (large) limit on how many characters you can have in total.</p> <p>You would no longer need the length if you use a special end of string marker. That saves four bytes for the length, but costs you two bytes for the marker, plus the additional time, complexity, and buffer overrun risks.</p> <p>The space-time trade-off of not storing the hash may help you if you do not need it often.</p> <p>For an application that I've worked with, where I needed super fast and memory efficient treatment of a large number of strings, I was able to leave the data in its encoded form, and work with byte arrays. My output encoding was the same as my input encoding, and I didn't need to decode bytes to characters nor encode back to bytes again for output.</p> <p>In addition, I could leave the input data in the byte array it was originally read into - a memory mapped file.</p> <p>My objects consisted of an int offset (the limit suited my situation), an int length, and an int hashcode.</p> <p>java.lang.String was the familiar hammer for what I wanted to do, but not the best tool for the job.</p> http://stackoverflow.com/questions/231051/is-there-a-memory-efficient-replacement-of-java-lang-string/232557#232557 3 Answer by Alex Miller for Is there a memory efficient replacement of java.lang.String? Alex Miller 2008-10-24T05:27:08Z 2008-10-24T05:27:08Z <p>At Terracotta, we have some cases where we compress big Strings as they are sent around the network and actually leave them compressed until decompression is necessary. We do this by converting the char[] to byte[], compressing the byte[], then encoding that byte[] back into the original char[]. For certain operations like hash and length, we can answer those questions without decoding the compressed string. For data like big XML strings, you can get substantial compression this way.</p> <p>Moving the compressed data around the network is a definite win. Keeping it compressed is dependent on the use case. Of course, we have some knobs to turn this off and change the length at which compression turns on, etc. </p> <p>This is all done with byte code instrumentation on java.lang.String which we've found is very delicate due to how early String is used in startup but is stable if you follow some guidelines.</p> http://stackoverflow.com/questions/231051/is-there-a-memory-efficient-replacement-of-java-lang-string/237524#237524 0 Answer by Kevin Day for Is there a memory efficient replacement of java.lang.String? Kevin Day 2008-10-26T04:00:27Z 2008-10-26T04:00:27Z <p>Remember that there are many types of compression. Using huffman encoding is a good general purpose approach - but it is relatively CPU intensive. For a B+Tree implementation I worked on a few years back, we knew that the keys would likely have common leading characters, so we implemented a leading character compression algorithm for each page in the B+Tree. The code was easy, very, very fast, and resulted in a memory usage 1/3 of what we started with. In our case, the real reason for doing this was to save space on disk, and reduce time spent on disk -> RAM transfers (and that 1/3 savings made a huge difference in effective disk performance).</p> <p>The reason that I bring this up is that a custom String implementation wouldn't have helped very much here. We were only able to achieve the gains we did because we worked the layer of the <em>container</em> that the strings live in.</p> <p>Trying to optimize a few bytes here and there inside the String object may not be worth it in comparison.</p>