Hardware versus Developer Time
Contrast wages with hardware upgrades.
A developer making $50/hr over ten 7-hour days to double the application speed costs the company $3500. Neither new features nor bug fixes will be developed during optimization, and new bugs might be introduced.
If doubling the RAM and CPU (presuming those are the bottlenecks) costs less than $3500, then upgrade the hardware. This not only reduces the chance of introducing new bugs, but frees the developer to add new features or fix existing issues.
SPEED BEYOND OPTIMIZATION TRICKS
Translate to C
Search for applications that can translate your source into C, then compile the C program natively. This will likely only work for applications that are not extremely complex.
Compile to Binary
Search for applications that can compile your source or bytecode into native code.
Java Native Interface
Rewrite the slowest parts of the application in C/C++, then integrate using the JNI. This implies compiling the native portion per deployment platform.
Compile With No Debugging Info
Fairly straightforward: javac -g:none.
Protocol Selection
Be picky about which data transfer protocols are used. SOAP might be preferable in some circumstances, but XML-RPC produces smaller XML packets.
Third Party Libraries
Search for the fastest library that solves the problem. For example, Piccolo (a machine generated XML parser) is blazingly fast.
SPEED USING OPTIMIZATION TRICKS
When developing an application from scratch (or not), here are some optimal Java coding tips:
StringBuilder
Use StringBuilder instead of StringBuffer when concurrency is not an issue. The StringBuilder class is the unsynchronized version of StringBuffer.
Use StringBuilder's append method instead of the + operator. The + operator incurs multiple object creation.
Construct StringBuilders with a buffer size that reflects the average content length. The default has room for 16 characters, so appending beyond that length causes the internal array to be resized (which requires object creation).
Append single character strings as char types (using '') rather than String types (using "").
Example
public String slow() {
String s = "Hello, World! Welcome to Stack Overflow!";
int i = 42;
s = s + "\n" + i;
return s;
}
public String fast() {
StringBuilder sb = new StringBuilder( AVERAGE_CONTENT_LENGTH );
int i = 42;
sb.append( "Hello, World! Welcome to Stack Overflow!" );
sb.append( '\n' );
sb.append( i );
return sb.toString();
}
Eliminate Debug Code
Write your code without debugging information and then use Aspect-oriented Programming (such as AspectJ) to inject debugging when and where required. This will:
- Increase the speed of the application.
- Completely decouple the logger from the application.
Do Not Initialize Instance Variables
Java, unlike C, will automatically set booleans to false, integers to zero, objects to null, and so on. If you initialize your variables to their defaults, they get initialized twice.
Example
public class Slow {
private int i = 0;
private boolean b = false;
private String s = null;
}
public class Fast {
private int i;
private boolean b;
private String s;
}
Use Lazy Initialization
Lazy initialization is not exclusive to Java, but is not used often enough. The idea is to instantiate objects immediately before they get used for the first time, and no sooner. This improves performance because the enclosing class can be instantiated independently of the objects it uses. (This can make dramatic differences with embedded devices and hand helds.)
Example
import java.util.*;
public class Slow {
private List<String> list = new ArrayList<String>( 1024 );
public Slow() {
}
protected List<String> getList() {
return this.list;
}
}
import java.util.*;
public class Fast {
private List<String> list;
public Fast() {
}
protected List<String> getList() {
if( this.list == null ) {
this.list = createList();
}
return this.list;
}
protected List<String> createList() {
return new ArrayList<String>( 1024 );
}
}
Loop Backwards
It is faster to compare against 0 than a variable, and faster to decrement a variable than increment. So when the order of looping through an array does not matter, loop in reverse.
Example
public void slow() {
char c[] = new char[ 1024 ];
for( int i = 0; i < c.length; i++ ) {
// Do something.
}
}
public void fast() {
char c[] = new char[ 1024 ];
for( int i = c.length - 1; i >= 0; i-- ) {
// Do something.
}
}
Buffered I/O
See: http://recursor.blogspot.com/2006/09/bufferedreader-vs-inputstream.html
New I/O
See: http://www.javaperformancetuning.com/tips/nio.shtml