Tagged Questions
5
votes
2answers
243 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 ...
4
votes
2answers
147 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 ...
3
votes
4answers
152 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}", ...
1
vote
3answers
186 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 ...