My thread pool has a fixed number of threads. These threads need to write and read a shared list frequently. So which data structure (had better be List, must be monitor-free) in java.util.concurrent package is best for the case?
Thanks a lot.
|
My thread pool has a fixed number of threads. These threads need to write and read a shared list frequently. So which data structure (had better be List, must be monitor-free) in java.util.concurrent package is best for the case? Thanks a lot. |
||||
The only That said, are you sure you need it to be a For queues, you have a huge number of options and which is most appropriate depends on how you need to use it: |
|||||
|
|
|
|||||||||||||||||||
|
|
You might want to look at ConcurrentDoublyLinkedList written by Doug Lea based on Paul Martin's "A Practical Lock-Free Doubly-Linked List". It does not implement the java.util.List interface, but offers most methods you would use in a List. According to the javadoc:
|
|||
|
|
|
Any Java collection can be made to be Thread-safe like so:
Or to create a brand new thread-safe list:
|
|||||||||||
|
|
If the size of the list if fixed, then you can use an AtomicReferenceArray. This would allow you to perform indexed updates to a slot. You could write a List view if needed. |
|||
|
|
List. – SLaks Nov 20 '11 at 19:01ConcurrentModificationExceptionmight not come from a synchronization problem; it also arises for example in a for-loop over a collection where you try to remove an element from the collection. – toto2 Nov 20 '11 at 19:55