Short Question

I have a loop that runs 180,000 times. At the end of each iteration it is supposed to append the results to a TextBox, which is updated real-time.

Using MyTextBox.Text += someValue is causing the application to eat huge amounts of memory, and it runs out of available memory after a few thousand records.

Is there a more efficient way of appending text to a TextBox.Text 180,000 times?

Edit I really don't care about the result of this specific case, however I want to know why this seems to be a memory hog and if there is a more efficient way to append text to a TextBox


Long (Original) Question

I have a small app which reads a list of ID numbers in a CSV file and generates a PDF report for each one. After each pdf file is generated, the ResultsTextBox.Text gets appended with the ID Number of the report that got processed and that it was successfully processed. The process runs on a background thread, so the ResultsTextBox gets updated real-time as items get processed

I am currently running the app against 180,000 ID numbers, however the memory the application is taking up is growing exponentially as time goes by. It starts by around 90K, but by about 3000 records it is taking up roughly 250MB and by 4000 records the application is taking up about 500 MB of memory.

If I comment out the update to the Results TextBox, the memory stays relatively stationary at roughly 90K, so I can assume that writing ResultsText.Text += someValue is what is causing it to eat memory.

My question is, why is this? What is a better way of appending data to a TextBox.Text that doesn't eat memory?

My code looks like this:

try
{
    report.SetParameterValue("Id", id);

    report.ExportToDisk(ExportFormatType.PortableDocFormat,
        string.Format(@"{0}\{1}.pdf", new object[] { outputLocation, id}));

    // ResultsText.Text += string.Format("Exported {0}\r\n", id);
}
catch (Exception ex)
{
    ErrorsText.Text += string.Format("Failed to export {0}: {1}\r\n", 
        new object[] { id, ex.Message });
}

It should also be worth mentioning that the app is a one-time thing and it doesn't matter that it is going to take a few hours (or days :)) to generate all the reports. My main concern is that if it hits the system memory limit, it will stop running.

I'm fine with leaving the line updating the Results TextBox commented out to run this thing, but I would like to know if there is a more memory efficient way of appending data to a TextBox.Text for future projects.

link|improve this question

6  
You could try using a StringBuilder to append the text then, upon completion, assign the StringBuilder value to the textbox. – keyboardP Jan 4 at 20:59
1  
I don't know if it would change anything but what if you would have a StringBuilder which appends the new Id-s and you would use a property which gets updated with the new value of the string builder and Bind this to your textbox.text property. – BigL Jan 4 at 21:01
1  
Why are you initializing an object array when calling string.Format? There are overloads that take 2 parameters so you can avoid creating an array. Plus when you use the params overload the array is created for you behind the scenes. – ChaosPandion Jan 4 at 21:02
3  
@Rachel: 500 GB? Not MB? – James Michael Hare Jan 4 at 21:09
3  
I was going to say, that's quite the impressive machine :-) – James Michael Hare Jan 4 at 21:14
show 21 more comments
feedback

11 Answers

up vote 85 down vote accepted

I suspect the reason the memory usage is so large is because textboxes maintain a stack so that the user can undo/redo text. That feature doesn't seem to be required in your case, so try setting IsUndoEnabled to false.

link|improve this answer
8  
Neat! If that's the case I hope @Rachel shares the results, I'm very curious now. – James Michael Hare Jan 4 at 21:14
4  
Yes, that appears to be the case. I am relieved to find out that the memory problem is really with the TextBox, not with the way I am appending the Text. Thank you very much :) – Rachel Jan 4 at 21:17
Yes, (something like) this has to be the root cause. – Henk Holterman Jan 4 at 21:17
1  
I don't use C#.. but doesn't this feature seem like an opt-in sort of feature, rather than opt-out? Oh well, wtg microsoft. – user606723 Jan 4 at 22:14
21  
The majority of times, users and developers would expect the textbox to function like standard textboxes (i.e. with the ability to undo/redo). In edge cases such as OP's requirements, it can prove to be a hinderance. If the majority of people use it, then it should be default. Why would you expect an edge case to force standard functionality to become opt-in? – keyboardP Jan 4 at 22:22
show 2 more comments
feedback

Don't append directly to the text property. Use a StringBuilder for the appending, then when done, set the .text to the finished string from the stringbuilder

link|improve this answer
1  
I forgot to mention the loop runs on a background thread and the results get updated real-time – Rachel Jan 4 at 21:01
feedback

Use TextBox.AppendText(someValue) instead of TextBox.Text += someValue. It's easy to miss since it's on TextBox, not TextBox.Text. Like StringBuilder, this will avoid creating copies of the entire text each time you add something.

It would be interesting to see how this compares to the IsUndoEnabled flag from keyboardP's answer.

link|improve this answer
feedback

Instead of using a text box I would do the following:

  1. Open up a text file and stream the errors to a log file just in case.
  2. Use a list box control to represent the errors to avoid copying potentially massive strings.
link|improve this answer
feedback

Personally, I always use string.Concat* . I remember reading a question here on Stack Overflow years ago that had profiling statistics comparing the commonly-used methods, and (seem) to recall that string.Concat won out.

Nonetheless, the best I can find is this reference question and this specific String.Format vs. StringBuilder question, which mentions that String.Format uses a StringBuilder internally. This makes me wonder if your memory hog lies elsewhere.

*based on James' comment, I should mention that I never do heavy string formatting, as I focus on web-based development.

link|improve this answer
I agree, sometimes folks get in the rut of saying "always use X cuz X is best" which is usually an oversimplification. There's a lot of subtlety between string.Concat(), string.Format() and StringBuilder. My rule of thumb is use each what it's intended for (it sounds silly, I know, but it holds true). I use concat when I'm joining strings (and then using the result immediately), I use Format when I'm performing non-trivial string formatting (padding, numeric formats, etc), and StringBuilder for building strings up during a loop to be used at the end of the loop. – James Michael Hare Jan 4 at 21:12
@JamesMichaelHare, that makes sense to me; are you suggesting that the use of string.Format/StringBuilder is more appropriate here? – jwiscarson Jan 4 at 21:14
Oh no, I was just agreeing with your general point that concat is usually best for simple string concats. The problem with "rules of thumb" are that they can change from .NET version to version if the BCL changes, thus sticking with the logically correct construct is more maintainable and usually performs better for its tasks. I actually had an older blog post where I compared the three here: geekswithblogs.net/BlackRabbitCoder/archive/2010/05/10/… – James Michael Hare Jan 4 at 21:17
Duly noted -- just wanted to be sure -- and answer edited to qualify my use of the word "always." – jwiscarson Jan 4 at 21:20
feedback

Maybe reconsider the TextBox? A ListBox holding string Items will probably perform better.

But the main problem seem to be the requirements, Showing 180,000 items cannot be aimed at a (human) user, neither is changing it in "Real Time".

The preferable way would be to show a sample of the data or a progress indicator.

When you do want to dump it at the poor User, batch string updates. No user could descern more than 2 or 3 changes per second. So if you produce 100/second, make groups of 50.

link|improve this answer
Thanks Henk. This was a one-time thing so I was being lazy when writing it. I wanted some kind of visual output to know what the status was, and I wanted text selection capabilities and a ScrollBar. I suppose I could have used a ScrollViewer/Label, but TextBoxes have ScrollBarrs built in. I didn't expect it would cause problems :) – Rachel Jan 4 at 21:20
feedback

Some responses have alluded to it, but nobody has outright stated it which is surprising. Strings are immutable which means a String cannot be modified after it is created. Therefore, every time you concatenate to an existing String, a new String Object needs to be created. The memory associated with that String Object also obviously needs to be created, which can get expensive as your Strings become larger and larger. In college, I once made the amateur mistake of concatenating Strings in a Java program that did Huffman coding compression. When you're concatenating extremely large amounts of text, String concatenation can really hurt you when you could have simply used StringBuilder, as some in here have mentioned.

link|improve this answer
feedback

Use the StringBuilder as suggested. Try to estimate the final string size then use that number when instantiating the StringBuilder. StringBuilder sb = new StringBuilder(estSize);

When updating the TextBox just use assignment eg: textbox.text = sb.ToString();

Watch for cross-thread operations as above. However use BeginInvoke. No need to block the background thread while the UI updates.

link|improve this answer
feedback

A) Intro: already mentioned, use StringBuilder

B) Point: don't update too frequently, i.e.

DateTime dtLastUpdate = DateTime.MinValue;

while (condition)
{
    DoSomeWork();
    if (DateTime.Now - dtLastUpdate > TimeSpan.FromSeconds(2))
    {
        _form.Invoke(() => {textBox.Text = myStringBuilder.ToString()});
        dtLastUpdate = DateTime.Now;
    }
}

C) If that's one-time job, use x64 architecture to stay within 2Gb limit.

link|improve this answer
feedback

StringBuilder in ViewModel will avoid string rebindings mess and bind it to MyTextBox.Text. This scenario will increase performance many times over and decrease memory usage.

link|improve this answer
feedback

Something that has not been mentioned is that even if you're performing the operation in the background thread, the update of the UI element itself HAS to happen on the main thread itself (in WinForms anyway).

When updating your textbox, do you have any code that looks like

if(textbox.dispatcher.checkAccess()){
    textbox.text += "whatever";
}else{
    textbox.dispatcher.invoke(...);
}

If so, then your background op is definitely being bottlenecked by the UI Update.

I would suggest that your background op use StringBuilder as noted above, but instead of updating the textbox every cycle, try updating it at regular intervals to see if it increases performance for you.

EDIT NOTE:have not used WPF.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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