Debian : AMD™ Sempron™ |
Read the FAQ! |
Compare the performance of Java 6 -server programs against some other language implementation, or check the Java CPU time and Memory use measurements.
For more information about the Java implementation we measured see ↓ about Java 6 -server.
For each of one our benchmarks, a white bar shows which language implementation had the faster program, and a black bar shows which used the least memory.
How many times faster or smaller are the Java 6 -server programs than the corresponding C GNU gcc programs?
| Java 6 -server x times better ~ C GNU gcc x times better | ||||
|---|---|---|---|---|
| Program & Logs | Faster | Smaller: Memory Use | Smaller: GZip Bytes | Reduced N |
| binary-trees | ~1.8 | ~5.3 | 1.2 | |
| chameneos-redux | ||||
| fannkuch | ~1.9 | ~26 | ~1.2 | |
| fasta | ~1.7 | ~3.2 | ~1.0 | |
| k-nucleotide | ~2.4 | ~1.9 | 1.1 | |
| mandelbrot | ~2.4 | ~3.1 | ~1.6 | |
| n-body | ~1.8 | ~3.5 | ~1.2 | |
| nsieve | ~1.1 | ~1.9 | ~1.4 | |
| nsieve-bits | ~1.8 | ~3.9 | ~1.2 | |
| partial-sums | ~3.5 | ~22 | ~1.2 | |
| pidigits | ~1.2 | ~3.8 | ~1.4 | |
| recursive | ~4.4 | ~28 | ~1.0 | 7 |
| regex-dna | ~1.8 | ~6.0 | 1.7 | |
| reverse-complement | ~6.3 | ~3.7 | ~1.2 | |
| spectral-norm | ~1.6 | ~1.4 | ~1.4 | |
| startup | ~64 | ~1.2 | ||
| sum-file | ~1.0 | ~1.5 | ~1.1 | |
| thread-ring | ~2.2 | ~5.4 | ~1.1 | |
Java HotSpot(TM) Server VM (build 1.6.0-b105, mixed mode)
Home Page: http://java.sun.com/j2se/
Download: http://java.sun.com/j2se/downloads/
"Remember how HotSpot works. It starts by running your program with an interpreter. When it discovers that some method is "hot" -- that is, executed a lot, either because it is called a lot or because it contains loops that loop a lot -- it sends that method off to be compiled. After that one of two things will happen, either the next time the method is called the compiled version will be invoked (instead of the interpreted version) or the currently long running loop will be replaced, while still running, with the compiled method. The latter is known as "on stack replacement" and exists in the 1.3/1.4 HotSpot based systems."