Concurrent Linked HashMap java
- by Nilesh
Please help me use/create Concurrent LinkedHashMap.
As per my belief, if I use Collections.synchronizedMap(), I would have to use synchronized blocks for getter/setter.
If I use ConcurrentSkipListMap, is there any way to implement a Comparator to store sequentially.
I would like to use java's built in instead of third party packages.
Thanks