Jason Delmore posted an interesting article comparing string concatenation using ColdFusion and Java.

stringbldr = createObject("java", "java.lang.StringBuilder").init();
for (i=1;i<=iterations;i++) {
stringbldr = stringbldr.append(appendstring);
}

Here the complete article.

Bookmark and Share