Tagged Questions
The string-interning tag has no wiki summary.
18
votes
2answers
374 views
Which debugging tool can list strings internalized?
I am looking to a debugging tool that can list the strings that have been internalized? Ideally, I would like to put a mark and have a list of the strings that been added after that mark.
Thanks in ...
12
votes
1answer
291 views
Why does this string have a reference count of 4? (Delphi 2007)
This is a very Delphi specific question (maybe even Delphi 2007 specific). I am currently writing a simple StringPool class for interning strings. As a good little coder I also added unit tests and ...
11
votes
6answers
499 views
Is string interning really useful?
I was having a conversation about strings and various languages a while back, and the topic of string interning came up. Apparently Java and the .NET framework do this automatically with all strings, ...
11
votes
5answers
445 views
Real Life, Practical Example of Using String.intern() in Java?
I've seen many primitive examples describing how String intern()'ing works, but I have yet to see a real-life use-case that would benefit from it.
The only situation that I can dream up is having a ...
10
votes
4answers
741 views
When to use intern()
I see a lot of legacy code like this:
class A {
public static final String CONSTANT = "value".intern();
...
}
I don't see any reason for the intern(), as in the Javadoc one can read: "All ...
7
votes
2answers
475 views
Use PermGen space or roll-my-own intern method?
I am writing a Codec to process messages sent over TCP using a bespoke wire protocol. During the decode process I create a number of Strings, BigDecimals and dates. The client-server access patterns ...
6
votes
3answers
318 views
Are strings pooled in Python
Does Python have a pool of all strings and are they (strings) singletons there?
More precise, in the following code one or two strings were created in memory:
a = str(num)
b = str(num)
?
5
votes
2answers
360 views
Search cost of string interning and declaration of literal strings
Two Questions.
When we declare literal strings, we search whether there is the same string in string pool of heap. Is this also an interning (method intern of class String)?
In my thought, each ...
5
votes
3answers
412 views
c# string interning
I am trying to understand string interning and why is doesn't seem to work in my example. The point of the example is to show Example 1 uses less (a lot less memory) as it should only have 10 strings ...
5
votes
2answers
237 views
Will Interning strings help performance in a parser?
If you are parsing, lets just say HTML, once you read the element name, will it be beneficial to intern it? The logic here is that this parser will parse the same strings (element names) over and over ...
5
votes
6answers
471 views
Why does .NET create new substrings instead of pointing into existing strings?
From a brief look using Reflector, it looks like String.Substring() allocates memory for each substring. Am I correct that this is the case? I thought that wouldn't be necessary since strings are ...
4
votes
2answers
130 views
String interning in .Net Framework - What are the benefits and when to use interning
I want to know the process and internals of string interning specific to .Net framework. Would also like to know the benefits of using interning and the scenarios/situations where we should use string ...
4
votes
1answer
185 views
Do common JavaScript implementations use string interning?
Do common JavaScript engines, such as V8 and WebKit's JavaScriptCore, use string interning for JavaScript strings? Or do they actually keep multiple instances of identical strings in memory?
4
votes
3answers
121 views
When is it a good idea to intern strings manually in a .Net code?
The reference is here:
http://msdn.microsoft.com/en-us/library/system.string.intern.aspx
Looks like this is done automatically by the compiler a lot, but can also be done manually.
Please correct me ...
4
votes
3answers
337 views
Java, HashMaps and using Strings as the keys - does the string value get stored twice?
If I have a HashMap that looks like this:
HashMap<String, MyObject>
where the String key is a field in MyObject, does this string value get stored twice?
So when I add entries:
...
4
votes
3answers
544 views
Operator overloading in Generic Methods
This code snippet is from C# in Depth
static bool AreReferencesEqual<T>(T first, T second)
where T : class
{
return first == second;
}
static void Main()
{
...
3
votes
5answers
68 views
String.intern() vs manual string-to-identifier mapping?
I recall seeing a couple of string-intensive programs that do a lot of string comparison but relatively few string manipulation, and that have used a separate table to map strings to identifiers for ...
3
votes
2answers
58 views
Intern string literals misunderstanding?
I dont understand :
MSDN says
http://msdn.microsoft.com/en-us/library/system.string.intern.aspx
Consequently, an instance of a literal string with a particular value
only exists once in the ...
3
votes
3answers
51 views
Has String.Intern had the value?
String.Intern has a special pool for strings which can later be retrieved.
Is there any way for me to know that the specified string was taken from the pool , and was NOt newly created ?
example :
...
3
votes
2answers
74 views
java synchronization on string as id
I have gone through the below links
Problem with synchronizing on String objects?
and
http://illegalargumentexception.blogspot.com/2008/04/java-synchronizing-on-transient-id.html
Now my question:
I ...
3
votes
3answers
276 views
String comparison and String interning in Java
When should one compare Strings as objects and when should one use their equals method? To make sure, I always use equals, but that doesn't seem very efficient. In what situations can I be certain ...
3
votes
4answers
150 views
Question on string interning performance
I'm curious. The scenario is a web app/site with e.g. 100's of concurrent connections and many (20?) page loads per second.
If the app needs to server a formatted string
string.Format("Hello, {0}", ...
2
votes
4answers
108 views
Are Interned Strings preserved when serializing?
If I have large object graph that contains many duplicate strings, is there a benefit to intern()ing the strings before serializing them? Will this reduce the amount of data transferred? Will the ...
2
votes
4answers
131 views
How can I avoid string.intern() contention and keep the memory footprint low?
I am parsing a rather large (200 MB) XML file that results in a tree of objects each defining a bunch of parameters (key=value). This data structure is running in a Tomcat webapp and used to lookup ...
2
votes
2answers
111 views
Does the CLR/JVM keep one single intern pool for all running .net/java apps?
The following is an extract from MSDN:
The common language runtime conserves
string storage by maintaining a table,
called the intern pool, that contains
a single reference to each unique
...
2
votes
1answer
77 views
Are .NET resource file strings interned?
When I use a .resx file to store fixed string values (to be bound to controls on an .aspx page), are these strings interned?
I presume the compiler reads in the strings from the XML file and replaces ...
2
votes
2answers
147 views
Is there any way to “flush” interned strings?
I'm using an external library which uses String.intern() for performance reasons. That's fine, but I'm invoking that library a lot in a given run and so I run into the dreaded
...
2
votes
10answers
2k views
deadlock on synchronized ( String intern())
I user sun jdk 1.5 ThreadPoolExecutor( 24, 24,60,TimeUnit.SECONDS, new LinkedBlockingQueue()). soemtime I use jdb tool to find the status of all threads in thread pool are " waiting in a monitor", ...
1
vote
0answers
53 views
RoR v2.3 Error “ActionView::TemplateError (interning empty string)”
I'm getting the following error when using the gem formtastic v0.2.4 ActionView::TemplateError (interning empty string).
My view is like so:
<% if signed_in? %>
<h3 ...
1
vote
3answers
169 views
about intern in java
my question is if intern is working with string and string having a
SPC(string pool constant) for it and intern concept also working with interger also,
so is there any integer pool constant?if not ...
1
vote
3answers
172 views
Can we avoid interning of strings in java?
Can we completely disable interning of strings. It might not be really helpful, but just a thought. I can think atleast one point where it could be helpful i.e. during jvm tuning, controlling the size ...
1
vote
1answer
191 views
How is Java's String#intern() method implemented?
I tried to look at Java's String#intern() method, but it's public native String intern();
In general, how is interning implemented? In String's case?
0
votes
4answers
56 views
String.intern is it the same just copy an object reference in Java?
Is doing:
String a = new String();
String b = a;
and doing:
String a = new String();
String b = a.intern();
is the same ?
Actually, the reference are all the same if I test:
String a = new ...
0
votes
3answers
130 views
Get a key equal to an item from SortedDictionary?
Is there any way to retrieve a key from a SortedDictionary that is equal to a given object? To illustrate, lets say I create a dictionary that has a fairly memory-heavy, immutable key type:
var ...
0
votes
5answers
295 views
Duplicate literals and hard-coding
I see the follow pattern occurring quite frequently:
b->last = ngx_cpymem(b->last, "</pre><hr>", sizeof("</pre><hr>") - 1);
Notice that the literal string is used ...
0
votes
2answers
131 views
How should i be handling string Interning on deserialization?
In the example below I am interning the string in the constructor which is fine. However when i deserialise the object from the binary formatter I don't think the string will be interned as the ...