I have an application which implements Asynchronous SOAP. Every 50-100ms I will receive data which is converted into a SortedList<double,double> object. I also have a predefined IList<double> which contains all the possible Keys in that SortedList.

I need to iterate through the IList and check if the SortedList contains that key. If it does, I write that value to the csv string; if not, I write 0.0 to the csv string.

Note: The IList has 400 keys. The SortedList will generally be much smaller than 400, around 100 at most.

        string MyText = timestamp.ToString("HH:mm:ss");
        for (int i = 0; i < AllKeys.Count; i++)
        {
            double info;
            if (MySortedList.TryGetValue(AllKeys[i], out info))
            {
                MyText += "," + info;
            }
            else
            {
                MyText += ",0.0";
            }
        }
        MyText += "\n";

        File.AppendAllText(filePath, MyText);

I currently am using the above code to create the csv string before writing it to my file. However, I am finding that this code is lagging my application.

I need help improving the efficiency so that storing the incoming data takes below 50ms. Some additional things:

  • I do not have to write to a csv file, I just need to store the data fast. (I can convert from a serialized file to my csv file later)
  • I have considered using LINQ, but I am not familiar with the queries and don't know how much more efficient it will be

Edit: I have solved my performance issue by using Conrad's suggestion of making a StreamWriter object. I simply created a static StreamWriter object and write all my text to it before closing the StreamWriter when communication is terminated.

link|improve this question

0% accept rate
1  
For starters try using a StringBuilder. Generally much faster for this kind of thing than native concatenation (or so I've heard). Also, didn't you first mention IList has all the possible keys of SortedList, then you say you need to check if it does? Am I missing something? – Brad Christie Dec 13 '10 at 3:33
I have an IList which has 400 double values which are all the possible Keys in the SortedList. The SortedList data I receive has values associated with some of those keys (not all). So for example, the IList has (1,2,3,4) and the sortedlist has ([1,6.6], [3,7.9]), my csv string will be "6.6, 0.0, 7.9, 0.0" – Ying Chan Dec 13 '10 at 3:41
feedback

3 Answers

Here are some thoughts.

1) Use a StreamWriter to write instead of File. This will be faster than the two step of writing to memory and then to a file.

2) If it all possible parallelize the work. For example if you can you one thread for processing the message and another thread to write the message.

3) I don't think the intent of LINQ is to improve performance, but make manipulations of data easier

link|improve this answer
I like the idea of parallelizing, is it possible to get an example to start me off? I am unsure of how to program good thread management – Ying Chan Dec 13 '10 at 4:47
feedback

I'm sure I haven't come up with the most efficient algorithm, but here is a starting point, at least. If nothing else, you will notice the use of StringBuilder, rather than concatenating strings. This alone is likely to garner you some performace benefit.

This algorithm assumes that both the SortedList keys and the "data" List are ordered in the same way (low-to-high).

var textBuilder = new StringBuilder(timestamp.ToString("HH:mm:ss"));

var index = 0;
foreach(double key in data.Keys)
{
    while(Allkeys[index] < key)
    {
        textBuilder.Append(",0.0");
        index++;
    }

    textBuilder.Append(",").Append(data[key]);
    index++;
}
MyText = textBuilder.Append(@"\n").ToString();

Just looking at the above, I'm sure there is a bug, but not sure what or where without spending more time and/or testing.

A possible LINQ solution is more declarative:

var textBuilder = new StringBuilder(timestamp.ToString("HH:mm:ss"));

var values = Allkeys.Select(
    key => data.ContainsKey(key) ? data[key].ToString() : "0.0")
    .ToArray();

var data = String.Join(",", values);
var MyText = textBuilder.Append(data).Append(@"\n").ToString();

More can be included in the LINQ expression using the Aggregate extension method, but you'd have to use string concatenation in the accumulator, so I haven't shown that here.

link|improve this answer
Thanks, i just tried this and has improved the speed by a fair bit. I also when and did a bit of searching and found this performance test graph. dotnetperls.com/stringbuilder-performance – Ying Chan Dec 13 '10 at 4:40
The bug in the first code is that the last Key in the SortedList is not always the last Key in the IList. So an IList of (1,2,3,4,5) and a SortedList of ([1,6.6], [3,7.8]) will only produce "6.6,0.0,7.8" – Ying Chan Dec 13 '10 at 5:38
feedback

I agree with answer from Conrad - yet one more idea to improve performance would be to do reverse lookup i.e. take each element from SortedList and do lookup in other list (of course, I would recommend to have dictionary instead of list for faster lookup).

link|improve this answer
Can you clarify with some code? If I have a list of (1,2,3,4) and sortedlist of ([1,6.6], [3,7.9]), how will I use reverse lookup to get a string of "6.6, 0.0, 7.9, 0.0"? – Ying Chan Dec 13 '10 at 4:50
Oops - completely missed 0.0 part! No, I don't think reverse lookup would help here. – VinayC Dec 13 '10 at 6:31
feedback

Your Answer

 
or
required, but never shown

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