-
Notifications
You must be signed in to change notification settings - Fork 0
Concurrent Collection
Rohit Agarwal edited this page Jan 21, 2018
·
2 revisions
- Traditional collection object(like ArrayList, HashMap etc) can be accessed by multiple threads simultaneously and there may be chance of data inconsistency problem and hence these are not thread safe.
- Already existing thread safe collections(Vector, Hashtable, synchronizedList(), synchronizedSet(), synchronizedMap()) performance wise not up to the mark.