Can anybody let me know is there any Queue implementation in javolution to use? I have seen FastList, FastMap, FastTable, but I couldn't find one specific to Queue. Any other suggestion to have a fast queue usage please? Thanks in advance!
Asked
Active
Viewed 448 times
1 Answers
0
I don't think there is a Queue implementation in Javolution.
Why not to use standard java.util.LinkedList or java.concurrent.LinkedBlockingQueue? Those are pretty efficient implementations of the Queue interface:

Slava Imeshev
- 1,360
- 10
- 14
-
1Thanks for the reply, you are correct. I'm now using the FastTable wrapped up with my own class to use as the Queue implementation. I've compared the results, Fasttable is faster & time predictable against LinkedList :) – Sudarsan Aug 29 '11 at 03:08
-
just for the the record: LinkedList is not a good implementation of Queue. ArrayDeque is. – claj Jan 19 '14 at 18:33