Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am not an expert in Java; I am hoping that someone on this list who are more proficient in Java can help me out.

I have the following codes on my current server.

<cfset var buffer = CreateObject("java", "java.lang.StringBuffer").init("") />
<cfset buffer.append(variables.myVar) />

I am trying to move these codes to another server. The problem is that this new server (shared hosting) does not allow invoking of a Java Object. So, I changed them to the followings.

<cfset var buffer = "" />
<cfset var buffer = buffer & variables.myVar />

My question is, are the new codes equivalent to the old ones? What are the advantages of using java.lang.StringBuffer?

Thanks in advance, Monte

share|improve this question
1  
Is there any reason to use StringBuffer instead of StringBuilder? – Peter Lawrey Jun 6 '11 at 17:14
If synchronization were a concern, you would probably want StringBuffer. Though it might just be old code. IIRC, StringBuilder was not added until jvm 1.5. – Leigh Jun 6 '11 at 18:26
Peter, the codes using StringBuffer were done by somebody else. – Monte Chan Jun 6 '11 at 20:12

3 Answers

up vote 4 down vote accepted

No, the "new" code is less efficient when used in a heavy loop.

You can emulate StringBuffer with an array.

<cfset var buffer = ArrayNew(1)>
<cfset ArrayAppend(buffer, variables.myVar1)>
<cfset ArrayAppend(buffer, variables.myVar2)>
<!--- more of these --->
<cfset result = ArrayToList(buffer, "")>

However: If you are not concatenating hundreds or thousands of strings in a row, there is little benefit in using StringBuffer. You can go with & in most cases.


I have done some testing (on a ColdFusion 7 server w/ Java 1.4, more recent editions might score differently).

All times are milli-seconds The results are averaged over 10 repeats (except the one in square brackets as this took virtually forever).

The following is the measurement of iteratively concatenating a single letter N times.

iterations   concat   array   cfsave   string
                             content   buffer
       100        0       0        0        2
      1000        4       4        2       22
     10000      168      29       33      219
    100000   30,781     168      293    1,575

The following is the result of iteratively concatenating a string of length 10 N times:

iterations   concat   array   cfsave   string
                             content   buffer
       100        0       0        0        4
      1000       25       0        2       24
     10000    1,242      33       31      232
    100000 [410,979]    180      373    2,082

Note how basic string concatenation gets rapidly more inefficient the more iterations you do and the longer the string gets. The other methods show more linar behavior.

Further notice that the StringBuffer's performance is also tied to its initial size. If you dimension it too small (i.e. by calling init("") instead of .init(10000), for example) then it is forced to re-allocate more space when it runs out, which also takes time. For the sake of test, I initialized it with exactly the amount of space it would need.

share|improve this answer
Thank you for your quick response. – Monte Chan Jun 6 '11 at 15:48
1  
@Tomalak join() in Java? I only heard of Array.join in JavaScript... Unless CF uses org.apache.commons.lang.StringUtils? – Henry Jun 6 '11 at 16:56
1  
@Henry: Hm. I simply assumed it was there (I mean, there is split() on strings…). Stupid me. :-\ – Tomalak Jun 6 '11 at 17:05
1  
@Henry Now I did some proper testing myself. See modified answer. – Tomalak Jun 6 '11 at 18:34
1  
That's very thorough. Thank you for showing the performance data. – Monte Chan Jun 6 '11 at 20:09
show 9 more comments

Technically, no. But practically, I think it is fine.

StringBuffer is a mutable object, hence the reason you are able to append(). ColdFusion strings, like Java Strings) are immutable, so you need to create a new string and overwrite the old (which is what you are doing in the above example).

I am not sure, but you might see a minor (milliseconds) performance different, and you are, technically, creating more objects with the ColdFusion method, but since you are using shared hosting you probably don't really care about that kind of performance difference anyway.

Unless you are doing hundreds or more of these, I doubt you will notice a difference.

share|improve this answer
Thank you very much for your response. – Monte Chan Jun 6 '11 at 15:54
JIT compiler would be smart enough to optimize the basic string append "+=" into using StringBuffer if and when it sees fit, but not sure about CF's "&=". See: stackoverflow.com/questions/599161/… – Henry Jun 6 '11 at 16:48

Use <cfloop> inside <cfsavecontent>. If what you're constructing is space-sensitive, please double the output for extra space/newline, and code your <cfloop> and <cfsavecontent> accordingly (i.e. in one line).

I've come cross tests that have shown that it is even faster then Java's StringBuilder.

Update: http://www.cfinsider.com/index.cfm/2009/10/23/High-Performance-String-Concatenation-in-ColdFusion

from fastest to slowest:

  1. ArrayAppend() and then ArrayToList()
  2. <cfsavecontent>
  3. StringBuilder's append()
  4. basic string concat using &
share|improve this answer
1  
That's brilliant, +1 – Tomalak Jun 6 '11 at 17:15

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.