So, there is a concurrent hashmap in Java, the advantage of which is not to lock down the whole hash table, but only portions of it. I was wondering whether there was such a construction for arrays. Particularly when an array is being resized locking down the whole array is not desirable, especially in real time applications. Anything out there?
feedback
|
|
There is
| |||||||||
feedback
|
|
The closest thing in the standard library is the CopyOnWriteArrayList. That's 'concurrent' in the sense that there is no lock, and so not contention, for readers; however, access for writers is serialized, and is very expensive. The tradeoff is a bit sharper than for the concurrent hashmap: reads are really cheap, but writes are really expensive. It seems like it might be possible to write a list implementation which used the striped lock strategy of the concurrent hashmap for single-element, size-preserving operations like | |||
|
feedback
|
|
You can always use one of these:
Your requirements aren't clear. Perhaps the java.util.collections copy-on-write list or set will do, too. | |||
|
feedback
|
|
Java 6 also adds an interesting collection called ConcurrentSkipListSet ...average log(n) time cost for the | |||||||||
feedback
|