Mar25Written by:Will
3/25/2008

I very often end up speaking to people about how much proper string handling, concatenation, and evaluation can increase the performance of a web site or application. So I decided to write a guide about it...
I tell many people of one of my favorite string optimization projects. I was asked to lower the response time of a web service from its current response time of approximately 60 seconds to something much faster. With it being a web service, that meant somewhere in the neighborhood of 1-5 seconds.
I immediately looked to see how the strings were being handled throughout the project. With it using a MySQL back-end, there were many static queries in string objects and string XML node comparisons that were all using the standard string handling techniques.
To make a long story short, after only overhauling the string handling throughout the application, I had brought the response time down to 1-3 seconds.
Find my string optimization guide attached to this blog post. I hope it helps you.
SSD_String_Optimization_Guide.pdf
SSD_String_Optimization_Guide.pdf
2 comment(s) so far...
Hey Will, the link to the PDF file doesn't work. I am very interesting in what you have to say about the topic.
By Chuck Rizzio on
4/29/2009 |
Thank you for the comment, and letting me know. I have reattached it. Use the SECOND link.
By Will on
4/29/2009 |