Java Collection Performance
The
first time I started wondering about collection performances was when I
started working with some > 100 000 elements collections. At that
time, I heard some bad jokes such as “I just understood why the Java
logo is a cup of coffee, because Java collections are so slow that when
manipulating them, you have the time to go and grab some coffee before
they do the job … Just kidding’ !”.
At that time, I wanting to use am implementation of a java.util.List that would have good performances on all the common methods provided by the interface (let’s say get(index), add(Object), remove(Object), remove(index), contains(Object), iterator(), add other methods that you like), without wondering about memory usage (I mean, even this List would take 4 times the size of a LinkedList it wouldn’t be a big deal).
In other words, some List that would not be instantiated a million times in my application, but a couple of times, and each instance will have great performances. For example, the model of a GUI Table, or some other GUI component, which data will evolve frequently, and which performances will sometimes be critical.
First of all, what do I mean by good performances ? Usually good performances are equivalent to an average complexity in O(1). But this one is impossible to get all the time, so at first let’s study current JDK List/Collection implementations and see what we have.
Well, we already know so basic information about Collection methods
complexity, such as the fact that a HashSet has an average O(1)
complexity for its contains(o) method, or that ArrayList is also in O(1)
for its method get(int index), etc.
But it will take some time to study the entire JDK Collection API to
have an idea of the complexity of each implementation (sometimes the
complexity is not really explicit), so instead of that, let’s do some
basic benchmark on them to see what they are capable of …
private void execute(BenchRunnable run, int loop, String taskName) {
System.out.print(taskName + " ... ");
// set default context
collection.clear();
collection.addAll(defaultCtx);
// warmup
warmUp();
isTimeout = false;
// timeout timer
Timer timer = new Timer((int) timeout, new ActionListener() {
@Override
public void actionPerformed(ActionEvent e) {
isTimeout = true;
// to raise a ConcurrentModificationException or a
// NoSuchElementException to interrupt internal work in the List
collection.clear();
}
});
timer.setRepeats(false);
timer.start();
long startTime = System.nanoTime();
int i;
for (i = 0; i < loop && !isTimeout; i++) {
try {
run.run(i);
} catch (Exception e) {
// on purpose so ignore it
}
}
timer.stop();
long time = isTimeout ? timeout * 1000000 : System.nanoTime() - startTime;
System.out.println((isTimeout ? "Timeout (>" + time + "ns) after " + i + " loop(s)" : time + "ns"));
// restore default context
// the collection instance might have been corrupted by the timeout,
// create a new instance
try {
Constructor<? extends Collection> constructor = collection.getClass().getDeclaredConstructor(
(Class<?>[]) null);
constructor.setAccessible(true);
collection = constructor.newInstance();
collection = collection.getClass().newInstance();
// update the reference
if (collection instanceof List) {
list = (List<String>) collection;
}
} catch (Exception e1) {
e1.printStackTrace();
}
// gc to clean all the stuff
System.gc();
}
For that purpose, I wrote this very simple benchmark code, that is not very elegant I have to admit, but do the trick. Here is the core of the benchmark :
where the BenchRunnable is just like a Runnable, but which can use the current loop index :
private interface BenchRunnable {
public void run(int loopIndex);
}
and the warmUp() method will manipulate a little the collection, to be sure that the internal structure is allocated.
A timer is used to timeout too long method benchmark, indeed my
purpose is not to have a complete benchmark, but just a global idea of
what implementations of Collection are efficient for a given method.
For example, I will call this method this way :
int nb = 1000000;
final List<String> list = new LinkedList<String>();
execute(new BenchRunnable() {
@Override
public void run(int i) {
list.add(Integer.toString(i));
}
}, nb, "add " + nb + " distinct elements : ");
I will finally display the results in a JFreeChart component, because the console output is not very friendly to compare results.
The complete source of the Benchmark class can be found here,
feel free to play with it ! (To those who will think “You should have
used a proper tool to do this stuff”, I would answer “Yes, you’re
totally right, but the fact is that when I started it, I didn’t mean it
to be so big in the end. Anyway, I like the press-button execution …”).
I first launched it on a couple of famous lists, from the JDK, from Javolution, from Apache Commons,
I also added a HashSet, just for the records. Here is what I got (the
colorful charts that I promised you) (Note that every bench is done with
an instance of the given collection populated with 100 000 elements) :

We can see some interesting things here, we confirm what we already knew about some collections, the CopyOnWriteArray is significantly slow on data modification, etc, we also can see, between ArrayList and LinkedList some significant differences (OK, the benchmark does not cover all the different cases, and maybe we are in the particular case were ArrayList is better than LinkedList, anyway it gives us an interesting overall).
The point here is to talk about List and especially fast
implementations, but just for the records, I post the results that I got
for some Sets :

So, after tuning a little bit the benchmark, studying my charts, I thought “How about creating my humble but own implementation of List ?” with a simple idea, not by implementing some cute-edge algorithm, but just by combining existing implementations. (If you’re not very enthusiastic about this idea, you can go directly to the Memory usage of Collections section below).
By this I mean a CombinedList which will use internally a HashSet, an ArrayList and a TreeList, and in each of its method, will use the data structure the most efficient to do the job, and so my CombinedList will be almost as fast as the fastest collection for all of its methods.
By almost I mean their will be a little delay involved by the fact that we will sometimes need to synchronize the data in the internal collections. But it’s not a big deal, because the clear() and addAll(collection) methods are quite fast, as we saw in our first charts, and they are definitely faster than some other O(n) or O(n x n) operations on some collections. So it’s faster to recreate from scratch the all collection than applying a remove(Object) on an ArrayList (once again, here I don’t care about Memory).
So here we go, here are the attributes of my CombinedList
/** HashSet */
private HashSet<E> hashSet;
/** ArrayList */
private ArrayList<E> arrayList;
/** TreeList */
private TreeList treeList;
/** If hashSet is up-to-date */
private boolean isHashSetUpToDate = true;
/** If arrayList is up-to-date */
private boolean isArrayListUpToDate = true;
/** If treeList is up-to-date */
private boolean isTreeListUpToDate = true;
After that, in each method I will use the fastest collection, for example, the contains(o) has an average O(1) in the HashSet implemetation, so :
/**
* @see java.util.Collection#contains(java.lang.Object)
*/
@Override
public boolean contains(Object o) {
// most efficient is HashSet
updateHashSetIfOutOfDate();
return hashSet.contains(o);
}
where the updateHashSetIfOutOfDate() will be coded like this :
/**
* Update the hashSet if out of date
*/
private void updateHashSetIfOutOfDate() {
// one of the two collection arrayList or treeList is necessarily up-to-date
if (!isHashSetUpToDate) {
hashSet.clear();
if (isArrayListUpToDate) {
hashSet.addAll(arrayList);
} else {
hashSet.addAll(treeList);
}
isHashSetUpToDate = true;
}
}
Concerning data modification, we will do a similar trick :
/**
* @see java.util.List#set(int, java.lang.Object)
*/
@Override
public E set(int index, E element) {
modCount++;
// most efficient is ArrayList
updateArrayListIfOutOfDate();
E old = arrayList.set(index, element);
setOtherThanArrayListOutOfDate();
return old;
}
where setOtherThanArrayListOutOfDate() will look like :
private void setOtherThanArrayListOutOfDate() {
isHashSetUpToDate = false;
isTreeListUpToDate = false;
}
We’ll extend java.util.AbstractList, and don’t forget to increment modCount when changing internal data, so that the ConcurrentModificationException mechanism is inherited from it.
Finally, we’ll do some custom optimization, on the retainAll(Collection) as mentioned on this Java bug.
And we are done, the complete source of the CombinedList class can be found here.
And here are the benchmark results :

We are quite good on contains(Object) and containsAll(Collection) thanks to the HashMap, and we are good on remove(Object) and add(int, Object) thanks to TreeList (TreeList is in O(log n) for theses operations).
Ok, I said that I didn’t care about memory, but let’s take a look at
what is the size of this CombinedList, and at the same time the size of
other collections.
For that purpose, and as I still don’t want to use Yourkit profiler today (which is an excellent tool by the way), I just added some simple method to measure our collection size :
heavyGc();
long usedMemory = ManagementFactory.getMemoryMXBean().getHeapMemoryUsage().getUsed();
Constructor<? extends Collection> constructor = clazz.getDeclaredConstructor((Class<?>[]) null);
constructor.setAccessible(true);
// do the test on 100 objects, to be more accurate
for (int i = 0; i < 100; i++) {
this.collection = (Collection<String>) constructor.newInstance();
// polulate
collection.addAll(defaultCtx);
// do some operation to be sure that the inernal structure is allocated
warmUp();
}
// measure size
long objectSize = (long) ((ManagementFactory.getMemoryMXBean().getHeapMemoryUsage().getUsed() - usedMemory) / 100f);
System.out.println(clazz.getCanonicalName() + " Object size : " + objectSize + " bytes");
collection.clear();
collection = null;
And display the results in the same JFreeChart component :

Ok, we have what we were expecting, that is to say our CombinedList size a TreeList + an ArrayList + a HashSet, but is not so bad compare to other collections ! Ok, yes it is, but with good performances !
Just a final remark concerning the benchmark. Does the fact that all
the benchmarks are done in the some JVM impact the results ? The answer
(correct me if I'm wrong) is that, if I executed just one time each
method, and if the methods were very fast, the JIT compilation time
could have an impact on the performances measured on the first
Collections tested. That's the reason why in my benchmark, I first test
the CombinedList, to be sure to have the worst case performances.
But the fact is that we execute several (thousand of ) times the same
method, so I consider the JIT compilation time is negligible.
Also, what about Heap allocation and status and its impact on the test ?
For this purpose, I carefully free all objects at the end of each
collection benchmark, and call a heavyGc() to be sure to minimize this
matter.
private void heavyGc() {
try {
System.gc();
Thread.sleep(200);
System.runFinalization();
Thread.sleep(200);
System.gc();
Thread.sleep(200);
System.runFinalization();
Thread.sleep(1000);
System.gc();
Thread.sleep(200);
System.runFinalization();
Thread.sleep(200);
System.gc();
} catch (InterruptedException ex) {
ex.printStackTrace();
}
}
Yes this is a HEAVY GC.
Thanks for reading.
From http://leolewis.website.org/wordpress/2011/07/14/java-collection-performance/




Comments
Thomas Eichberger replied on Mon, 2011/07/18 - 1:45am
Leo Lewis replied on Mon, 2011/07/18 - 2:43am
in response to: xtraclass
Thomas,
Very interesting articles about micro benchmark.
Indeed you are absolutely right about the fact that the use of nanoTime() is not really suitable here, and the fact that this benchmark might not be absolutely corrects, because of several factors that I have ignored.
But in fact, it's not really a big matter in my humble opinion. As I mentioned it, my purpose is not to have a complete benchmark, but just a global idea of collection performances. And that's why I used a timeout, and also why I presented results in charts, to compare them relatively, but not in some table, because the absolute value does not really interest me here.
It's very difficult to implement a good benchmark as it is said in the articles that you pointed, and for this reason it's sometimes difficult to find some benchmark results on the Internet, which is a shame in my opinion.
So here is an incomplete/imperfect/simplistic benchmark of Java collections, but which I hope give some global idea on this topic.
Artur Biesiadowski replied on Mon, 2011/07/18 - 7:04am
Try adding few combined benchmarks - for example set(index,obj) interleaved with contains(obj), set/contains/set/contains/set/contains etc. You may find out that your CombineList has worst performance of all other 3 collection types and creates thousand times as much garbage.
Leo Lewis replied on Mon, 2011/07/18 - 8:49am
in response to: abies
Artur,
Yes you are absolutely right. This combined list has poor performances with interleaved operations due to the re-population of internal collections.
Well, in fact, I first implemented this CombinedList for the model of a JTable.
In my case, operations were quite done in batch, add a lot of data, then add another set of data but before adding filter data that are already in the list (with the contains), then remove a range of data, set a range of Data, etc. And for this case it was a good compromise.
But for interleaved operations, another collection is a better choice indeed.
Mariusz Lotko replied on Tue, 2011/07/19 - 1:31am
Interesting post. Have you also tried those benchmark with various equals and hashCode methods' implementation of contained objects?
I'm interested how those benchmarks change when equals/hashCode are simple (fast) and when they're complex (slow). Good results of sets (better than lists in most cases) would suggest that both equals and hashCode was very simple.
Leo Lewis replied on Wed, 2011/07/20 - 5:40am
in response to: ml52408
Mariusz,
Yes indeed, the equals() and hashCode() methods ot the contained objects will have an impact in the absolute results measured, especially this impact will be visible with a small number of elements in the collection.
But in the end, these two methods have a O(1) complexity, so for collection with let's say 10000+ elements, their impact will be negligeable compared to a loop on a List when searching for an element to remove for example. That's why in such case the HashSet will always have better performances than an ArrayList.
But please feal free to download and modify the benchmark code here.
You can pretty easily replace the String by some more complex object (regarding its equals/hashCode method) and see untill what population size these methods have a visible impact on the relative performances between Set and List for example.
Leo
Artur Biesiadowski replied on Fri, 2011/07/22 - 5:23am