No, I opened it and saw that it was 400 lines long and didn't have time to go through it all. But sweeping through it quickly, the same advice applies. The difference is that you have to use the StringBuffer for everything. Since you aren't passing the StringBuffer into the CSVFormat method and I don't see the code for that method, I assume it is still suffering from the creation of large numbers of String instances. Try passing the StringBuffer into CSVFormat and use it within the method to append the data.
On Mon, Jun 2, 2008 at 12:25 PM, Rick Root <[EMAIL PROTECTED]> wrote: > Didn't look at the code, eh? > > On Mon, Jun 2, 2008 at 12:07 PM, Brian Kotek <[EMAIL PROTECTED]> wrote: > > > Use a Java StringBuffer or StringBuilder. Concatenating large strings in > CF > > > > > > On Mon, Jun 2, 2008 at 10:03 AM, Rick Root <[EMAIL PROTECTED]> > > wrote: > > > > > > > > http://cfm.pastebin.org/40043 > > > > > > > > > -- > > Rick Root > > New Brian Vander Ark Album, songs in the music player and cool behind the > > scenes video at www.myspace.com/brianvanderark > > > > > ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~| Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to date Get the Free Trial http://ad.doubleclick.net/clk;192386516;25150098;k Archive: http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:306592 Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4

