All,
The edge Vector class has over ArrayList is that it is synchronized and hence ensures thread-safety. However, between CopyOnWriteArray and Vector, what should be the preferred considering thread safety and performance in consideration.
|
All, The edge Vector class has over ArrayList is that it is synchronized and hence ensures thread-safety. However, between CopyOnWriteArray and Vector, what should be the preferred considering thread safety and performance in consideration. |
||||
|
|
|
Overall, it depends on the frequency and nature of read and write operations, and the size of the array. You'll need to benchmark in your context to be sure, but here are some general principles:
You may also want to consider two other options:
|
|||
|
|
It depends on the usage pattern - if you have much more reads than writes, use
Another consideration is a behaviour of iterators - |
|||
|
|