Can the following piece of code be rewritten w/o using Collections.synchronizedMap() yet maintaining correctness at concurrency?

Collections.synchronizedMap(new WeakHashMap<Class, Object>());

i.e. is there something from java.util.concurrent one can use instead? Note that merely replacing with

new ConcurrentHashMap<Class, Object>(new WeakHashMap<Class, Object>()));

obviously won't work

link|improve this question

45% accept rate
feedback

3 Answers

up vote 16 down vote accepted

Google Collections' MapMaker class allows you to do this easily. Check it out, the project is awesome...

link|improve this answer
1  
Wow, that MapMaker class is very impressive. It does way more than I'd normally expect of a single class, so it's really a facade to a whole slew of things that can probably be composed in different ways. The com.google.common.base package is also nice. – seh Feb 13 '10 at 1:18
Excellent! Thanks for the pointer, Steven! – Nikita Feb 14 '10 at 16:53
2  
Note that in Guava 10, this functionality of MapMaker has been replaced by CacheBuilder, which does even more of what you might want. – Trevor Robinson Feb 15 at 19:38
feedback

I don't believe there is. In fact the javadoc suggests using Collections.synchronizedMap()

"Like most collection classes, this class is not synchronized. A synchronized WeakHashMap may be constructed using the Collections.synchronizedMap method."

link|improve this answer
feedback

Does wrapping the WeakHashMap in a synchronized map still work correctly for what you want to do, since the garbage collector can modify the weakreferences directly at anytime, bypassing the synchronized map wrapper? I think WeakHashMap only truly works in a single threaded model.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.