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}", username);

Will the "Hello, {0}" be interned? Or would it only be interned with

string hello = "Hello, {0}";
string.Format(hello, username);

Which, with regard to interning, would give better performance: the above or,

StringBuilder builder = new StringBuilder()
builder.Append("Hello, ");
builder.Append(username);

or even

string hello = "Hello, {0}";
StringBuilder builder = new StringBuilder()
builder.Append("Hello, ");
builder.Append(username);

So my main questions are: 1) Will a string.Format literal be interned 2) Is it worth setting a variable name for a stringbuilder for a quick lookup, or 3) Is the lookup itself quite heavy (if #1 above is a no)

I realise this would probably result in minuscule gains, but as I said I am curious.

link|improve this question

Please change your title to a real question. – Kena Jun 23 '10 at 18:50
done, can I have my vote back? :-) – David Archer Jun 23 '10 at 18:52
feedback

4 Answers

up vote 3 down vote accepted

String.Format actually uses a StringBuilder internally, so there is no reason to call it directly in your code. As far as interning of the literal is concerned, the two code versions are the same as the C# compiler will create a temporary variable to store the literal.

Finally, the effect of interning in a web page is negligible. Page rendering is essentially a heavy-duty string manipulation operation so the difference interning makes is negligible. You can achieve much greater performance benefits in a much easier way by using page and control caching.

link|improve this answer
How is it you have so few points? Great answer :-) – David Archer Jun 23 '10 at 19:06
even though String.Format uses an string Builder to concatenate the string it still needs to parse the formatstring for its parameters. – Sven Hecht Jul 6 '10 at 8:30
The alternative is to build the string step by step, creating code that is harder to write, read and maintain. The performance gain is too small to justify this. There are other, far more useful ways to improve performance like output caching. – Panagiotis Kanavos Jul 6 '10 at 8:45
feedback

There is a static method String.IsInterned(str) method. You could do some testing and find out!

http://msdn.microsoft.com/en-us/library/system.string.isinterned.aspx

link|improve this answer
ah, right. I didn't know about that one, thanks. – David Archer Jun 23 '10 at 18:53
feedback

Quick answer: run a 100k iterations and find out.

link|improve this answer
feedback

You can't beat

return "Hello, " + username;

if your scenario is really that simple.

link|improve this answer
that's not true. StringBuilder and String.Concat() both are MUCH faster. – Sven Hecht Jul 6 '10 at 8:39
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.