vote up 10 vote down star
12

This is really two questions, but they are so similar, and to keep it simple, I figured I'd just roll them together:

  • Firstly: Given an established Java project, what are some decent ways to speed it up beyond just plain in-code optimization?

  • Secondly: When writing a program from scratch in Java, what are some good ways to greatly improve performance?

Please stay away from general optimization techniques unless they are Java specific.

I asked this about Python and Perl earlier. For Java I'm wondering what good tips/tricks are out there to improve performance and if there are any particularly good Java profilers.

flag

27% accept rate

16 Answers

vote up 14 vote down

Firstly : by code optimization, I would assume that you've done the right algorithms and right implementation of algorithms. In which case, you would use the profiler and look at how often your garbage collector(GC) is collecting garbage and how much time it is using for doing that. Then you start working on the GC options -- but beware you can get into trouble if you don't know what you're doing.
I assume that you're using java 5/6. In which case, I'd go through the java 5 tuning guide at http://java.sun.com/docs/hotspot/gc5.0/gc_tuning_5.html. There is also a very very good newletter on java performance called http://www.javaperformancetuning.com/ to which you can subscribe.

Other than that, look at how many try/catch blocks you can eliminate. See if you can eliminate unnecessary throwing of Exceptions.

Use Caches where you can BUT don't over do it.

Read Effective Java, 1st and/or 2nd Edition

Profilers : I use yourkit. It's pretty good for java 1.5 and above. You can get a personal license. Other profilers are also good as well.

Just like you have unit and integration tests, it does NOt hurt to have some performance tests that you run as part of your CONTINUOUS INTEGRATION(CI) builds. This way you know when you regressed, especially if you are using a good CI build server.

link|flag
try / catch is fairly cheap these days. I wouldn't worry about that. – Alex Miller Oct 7 '08 at 20:01
Note 'Caches' should not include object pools, which are not recommended these days except in the case of "expensive" objects like thread pools or database pools. – sk Oct 7 '08 at 21:43
vote up 10 vote down

Make sure your log level's aren't accidentally left at DEBUG :)

link|flag
Accidentally. Yeah, right! :-) – agnul Oct 7 '08 at 21:38
It is amazing how big a difference this can do. – Christian Vest Hansen Oct 7 '08 at 22:47
vote up 10 vote down

"Measure, don't guess."
Here is a good article on using the NetBeans Profiler to speed up the iText PDF library. I've used the NetBeans Profiler myself, and I've found it to be very easy and useful in tracking down some performance issues I was having.

For an older application, simply moving to Java 6 might be a performance boost. See this whitepaper for information on the performance improvements in Java 6.

link|flag
vote up 7 vote down

Use the latest VM--they are getting better all the time.

Profile and test. Never optimize your code unless you are absolutely sure you need to.

If it's a GUI app, Switch from Swing to AWT or maybe Eclipse's toolkit, it's supposed to be pretty quick. This is more important on older VMs (I've been working embedded for a while and we are actually in a 1.0.x vm, swing isn't even available)

I know this isn't specific to Java exactly, but not allocating objects--this includes string concatenation in a loop (outside a loop it's pretty acceptable. This is the biggest thing you can probably do.

You can also keep objects around instead of freeing/reallocating them. There are some "reference" classes that can be used to hold onto objects that you don't need but might want to reuse--the GC won't delete them unless it needs the space.

Allocate more space if needed with the -MX argument.

It's kind of hard to speed Java up much--HotSpot already does so much for you that anything you do that you think might speed up your code can often slow it down.

link|flag
Rendering in Swing is not that slow. Most of the time it's the business code that blocks the EDT. – Roland Schneider Oct 7 '08 at 20:08
Good point, but I did actually have a 1.1 embedded project (Signal analyzer for Agilent) where the GUI was in AWT, we re-coded it in swing, then found that swing was significantly slower and we re-coded it in AWT. This is a case where we were actually drawing the trace for the signal analyzer and needed at least 20 fps. – Bill K Oct 13 at 17:41
vote up 5 vote down

Using StringBuilder in place of large sets of String concatenation gives a great relative performance boost.

However, I can't avoid saying the general practice performance gaining benefit, Profiling. I don't know Java profiling off-hand (Only used the language academically), but profiling helps you identify problem sections of your code, and it is a lot easier to fix specific sections since you have something to look up.

link|flag
In many cases, the VM will turn string concatenation into StringBuffer manipulation. I'd be be surprised if doing this manually gave any performance boost except in the most bone-headed of cases. – skaffman Oct 7 '08 at 18:51
@skaffman, Don't confuse StringBuilder (unsynchronized) with StringBuffer (synchronized.) – finnw Oct 7 '08 at 19:17
Since Java 5, the compiler turns String concatenation into the equivalent StringBuilder calls. If you write a trivial class with String concatenation in it, compile, and then open up the .class file in a text editor, you'll see the StringBuilder replacement calls. – shadit Oct 7 '08 at 19:52
1  
Neither the compiler nor the VM will replace string concatenation with StringBuffer when it happens inside a loop (i.e. a String scoped outside the loop is concatenated to inside the loop) - which is pretty much the only time where it really counts. – Michael Borgwardt Jul 29 at 10:13
vote up 2 vote down

For profiling, try JAMON for time monitoring, and the NetBeans profiler for general performance and memory monitoring.

link|flag
vote up 2 vote down

Another potential performance gain can be realized by switching to a faster VM. They are not all made equal, and some are better suited to different types of applications. They may also each have specific types of customizations that they support, as well as the standard ones.

Some comparisons

Also, be wary of doing microbenchmarks for testing performance, as they are not meaningful due to the way most VM's work. So some very simple performance tests may behave differently due to reasons that are not obvious.

Simply running a test and then changing a small bit of code or a VM option and running it again, may produce different results, but have nothing to do with the changes you made.

link|flag
vote up 1 vote down

the same as for any language, use appropriate algorithms and data structures.

One good thing of OOP, is that you might be able to change implementations of an object without changing the interface. That lets you start coding with naïve implementations and replace them if needed.

link|flag
vote up 1 vote down

Don't optimize blindly. Use Yourkit or any other good profiler to find out the "hotspots" in your application.

You need not only take a look a CPU time, but also at how much memory is allocated and freed for certain step. You also want to ensure that you don't have memory leaks, or high memory consumption. The best tool to analyze memory consumption that I know is the Eclipse Memory Analyzer (http://www.eclipse.org/mat).

Other dimensions are thread contention and IO problems. For a simple way to analyze contention problems, check my old blog at https://www.sdn.sap.com/irj/sdn/weblogs?blog=/pub/wlg/4737

link|flag
vote up 1 vote down

You also asked this in regard to C#, and I would give the same answer, and that it's a mistake to start off being language-specific. Once you've squeezed every cycle that you can get using general techniques and approaches, then language-specific stuff might make a difference.

link|flag
vote up 0 vote down

I've seen that sometimes just giving the JVM more heap memory will help a sluggish application. This is controlled with the -xmx and -xms JVM options at startup.

link|flag
Happens because you are close to exhausting the heap space and thus have more garbage collections to attempt a clean-up. You can either increase heap space as you suggested or find the culprit that is taking up all the memory. – jlouis Oct 7 '08 at 21:34
vote up 0 vote down

There's one thing you should do right from the start of a project that will be an enormous help: write readable code.

Don't try to write long methods to avoid method calls. Compilers will inline if necessary, but may produce poor code for long methods. If the code is difficult to read, often performance problems will be caused by it doing something mental that you can't see for the clutter.

link|flag
vote up 0 vote down

Java 1.6_07+ comes with its own profiler. It is called Java VisualVM. Just type jvisualvm on the command prompt if you have your %JAVA_HOME%/bin on your PATH.

link|flag
vote up 0 vote down

Here is an (older) document by Peter Sestoft which is worth reading: Performance in java. Some of the advice is probably not true anymore since Java got a lot better with the later versions in optimizations. But there are still a good set of gems in there to utilize and try when the profiler has found something you can't do any other way (ie, change algorithmically).

link|flag
vote up 0 vote down

It may seem irrelevant, but there is a list of speed tips on the Android developer site. It's running on a phone on non-standard dalvik bytecode but many of the tips listed there are universally applicable to Java in general.

link|flag
vote up 0 vote down

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

link|flag
Is looping backwards really worth it? It seems like it'd confuse a lot of people looking at your code. – cdmckay Jun 23 at 3:53
A comment would certainly help. At a glance, I can see that the array is being iterated. However, slow() is probably a better technique until desperate for speed, for a few different reasons. (Insert Knuth's premature optimization quote here.) – Dave Jarvis Jun 23 at 7:59

Your Answer

Get an OpenID
or

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