1
vote
4answers
123 views
How to implement ConcurrentHashMap with features similar in LinkedHashMap?
I have used LinkedHashMap with accessOrder true along with allowing a maximum of 500 entries at any time as the LRU cache for data. But due to scalability issues I want to move on to some thread-safe …
3
votes
4answers
119 views
Is it possible to have more than 32 locks in ConcurrentHashMap
I read ConcurrentHashMap works better in multi threading than Hashtable due to having locks at bucket level rather than map wide lock. It is at max 32 locks possible per map. Want to know why 32 and …
1
vote
2answers
84 views
When should I use ConcurrentSkipListMap?
In Java, ConcurrentHashMap is there for better multithreading solution. Then when should I use ConcurrentSkipListMap? Is it a redundancy?
Does multithreading aspects between these two are common?
6
votes
5answers
203 views
Is ConcurrentHashMap.get() guaranteed to see a previous ConcurrentHashMap.put() by different thread?
Is ConcurrentHashMap.get() guaranteed to see a previous ConcurrentHashMap.put() by different thread? My expectation is that is is, and reading the JavaDocs seems to indicate so, but I am 99% …
0
votes
2answers
90 views
ConcurrentHashMap and putAll() method
Normally (ie. not concurrently), putAll() cannot be more efficient than using lot's of calls to put(), even assuming that you exclude the cost of building the other Map that you pass to putAll(). …
0
votes
4answers
105 views
Strategy in java to clean up / remove unused map elements
Hi,
I'm implementing a "manager" in my web app that can be called to set and get which web site context the current thread is in (we white label our site so the web site context represents which …
2
votes
4answers
73 views
ConcurrentHashMap constructor parameters?
I am wondering about the parameters for constructing a ConcurrentHashMap:
initialCapacity is 16 by default (understood).
loadFactor is 0.75 by default.
concurrencyLevel is 16 by default.
My …
0
votes
3answers
246 views
Synchronization of ConcurrentHashMap modifiers
I would like to cache some IO with the help of ConcurrentHashMap. The modification on the binary file should be reflected in cache as well. Since the cache is going to be used by multiple threads all …
2
votes
4answers
421 views
Why does ConcurrentHashMap prevent null keys and values?
The JavaDoc of ConcurrentHashMap says this:
Like Hashtable but unlike HashMap, this class does not allow null to be used as a key or value.
My question: why?
2nd question: why doesn't Hashtable …
1
vote
4answers
736 views
2-D (concurrent) HashMap: 2-property key type? hashmap of hashmaps? [update]
So I need a 2-dimensional ConcurrentHashMap.
It has to be as blazing fast as possible, as I'm going to be adding to and updating its values extremely frequently. It's in a multithreaded application, …
2
votes
5answers
257 views
Does a call to a threadsafe function need to be syncronized too?
If I'm using ConcurrentHashMap (where the put is thread safe) , and I supply a public function myPut that uses the ConcurrentHashMap put - do I need to synchronize my function?
meaning : should this …
