Applications using Java Collections

174 views Asked by At

Is there a way to find some Java application that uses a specific collection. I implemented my own concurrent skip list and wanted to "replace" it into an application where ConcurrentSkipListSet of Java collections is used to see the performance difference of my implementation and ConcurrentSkipListSet.

I know that I could benchmark both skip lists implementation (mine and Java's) but I would like to see what's the difference in a real scenario.

Any ideas on how to find such an application? (*I searched inside the Java standard library but couldn't find anything using ConcurrentSkipList).

1

There are 1 answers

0
MikeFHay On