Re: [IronPython] Performance str.replace in Silverlight

2010-06-01 Thread Michael Foord
On 01/06/2010 21:11, Dino Viehland wrote: Michael wrote: I just tracked down a really nasty performance bug in our Silverlight application. It turned out that doing a simple string replace in a 400 character string was taking 700ms. As we actually do two replaces and the text is usually subs

Re: [IronPython] Performance str.replace in Silverlight

2010-06-01 Thread Dino Viehland
Michael wrote: > I just tracked down a really nasty performance bug in our Silverlight > application. It turned out that doing a simple string replace in a 400 > character string was taking 700ms. As we actually do two replaces and > the text is usually substantially longer this was a real problem.

Re: [IronPython] Performance str.replace in Silverlight

2010-05-28 Thread Michael Foord
on] Performance str.replace in Silverlight Hey guys, I just tracked down a really nasty performance bug in our Silverlight application. It turned out that doing a simple string replace in a 400 character string was taking 700ms. As we actually do two replaces and the text is usually substantially longer

Re: [IronPython] Performance str.replace in Silverlight

2010-05-27 Thread Dino Viehland
> From: users-boun...@lists.ironpython.com [mailto:users- > boun...@lists.ironpython.com] On Behalf Of Michael Foord > Sent: Thursday, May 27, 2010 9:41 AM > To: Discussion of IronPython > Subject: [IronPython] Performance str.replace in Silverlight > > Hey guys, > > I

[IronPython] Performance str.replace in Silverlight

2010-05-27 Thread Michael Foord
Hey guys, I just tracked down a really nasty performance bug in our Silverlight application. It turned out that doing a simple string replace in a 400 character string was taking 700ms. As we actually do two replaces and the text is usually substantially longer this was a real problem. I fix