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 ...