Now that I've succesfully upgraded to 2.5.0 I am looking for ways to speed up my app.
Consider the following code bit. while(repeat a few thousand times) { XMLCh* ch1 = XMLString::transcode("Name"); // do something... delete []ch1; // with this the performance is approx. the same too... //XMLString::release(&ch1); } With ~12 000 repeats in that while loop the line times for transcode call are: (units unknown, but they are comparable) Shortest: 18,401 Average: 41,968 Longest: 4,951,682 Now I know that it is not necessary to make that call with constant arguments repeatedly, but shouldn't it still be equally fast every time? Markus --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]