Concurrent Linked HashMap java
        Posted  
        
            by Nilesh
        on Stack Overflow
        
        See other posts from Stack Overflow
        
            or by Nilesh
        
        
        
        Published on 2010-04-23T11:53:41Z
        Indexed on 
            2010/04/23
            12:03 UTC
        
        
        Read the original article
        Hit count: 358
        
java
|collections
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
© Stack Overflow or respective owner