Tagged Questions
The weakhashmap tag has no wiki summary.
5
votes
2answers
1k views
is there java.concurrent.util (or equivalent) for WeakHashMap?
Can the following piece of code be rewritten w/o using Collections.synchronizedMap() yet maintaining correctness at concurrency?
`Collections.synchronizedMap(new WeakHashMap<Class, ...
4
votes
2answers
62 views
Will a WeakHashMap's entry be collected if the value contains the only strong reference to the key?
I need to associate some data with a key for its lifetime, so I am using a WeakHashMap. However, in addition I need to get a key by its corresponding value. The easy way to do it is to hold on to the ...
4
votes
4answers
265 views
Java Weak Hash Map - Need to remove entry based on weakness of value, not key
So the Java WeakHashMap lets one create a map whose entries are removed if its keys become weak. But how can I create a Map whose entries are removed when the values in the map become weak? The ...
4
votes
1answer
491 views
Guava MapMaker().weakKeys().makeMap() vs WeakHashMap
We have a Scala server that is getting a node tree using Protocol Buffers over a socket and we need to attach additional data to each node.
In a single threaded context and when both the node tree ...
3
votes
2answers
311 views
Java: need advise about WeakHashMap
I guess I'm another person trying to make some kind of a cache with WeakHashMap. And I need some help with it.
I have bunch of TrackData objects that contain information about audio tracks. Then ...
3
votes
4answers
702 views
Can someone explain to me when it is useful to use MapMaker or WeakHashMaps?
I have read many people really like the MapMaker of Google Guava (Collections), however I cannot see any good uses of it.
I have read the javadoc, and it says that it behaves like ConcurrentHashMap. ...
2
votes
2answers
135 views
WeakHashMap - what is its purpose and how should it be used correctly
Today I found this blog post which discussed usages of WeakHashMap over cache. It was intrigued by the fact that not the values, but the keys are stored as weak references, and when the reference is ...
2
votes
3answers
91 views
Are keySet entries of a WeakHashMap never null?
If I iterate over the key set of a WeakHashMap, do I need to check for null values?
WeakHashMap<MyObject, WeakReference<MyObject>> hm
= new WeakHashMap<MyObject, ...
2
votes
4answers
289 views
WeakHashMap: how to know the value that was associated with a removed entry
I've something like this
private Map<MyObj1, MyObj2> map = new WeakHashMap<MyObj1, MyObj2>();
... somewhere in the code ...
MyObj1 myObj1 = new MyObj1();
map.put(myObj1, new ...
1
vote
2answers
88 views
Java, convert object to softreference
I need to put a data object into my weakhashmap containing softreferences. How do I convert my "Drawable" object into a softreference?
WeakHashMap <String, SoftReference<Drawable>> ...
0
votes
1answer
53 views
How to clone/copy WeakHashMap? (Deep copy)
I had a HashMap and I used the clone function to make a deep copy. But I switched this to a WeakHashMap to try out some memory management.
I still want to do this clone function but it isn't part of ...
0
votes
1answer
84 views
Java SoftHashMap Implementation
I wanted to implement SoftHashMap based on Java SoftReference and HashMap. Java docs, about WeakHashMap, say that keys are weak references rather than values. I was wondering what hashcode() would be ...
0
votes
2answers
400 views
Java WeakHashMap reference not being updated
In the code below I create a Pen object and initialize it's color to white. In the constructor of Pen, after setting the field 'penColor' to the value passed into the constructor, I update a global ...
-1
votes
1answer
25 views
using hashmap is the cause of out of memory exception
I am getting an out of memory exception while running my portal . i am using jvisulavm to monitor the portal and using eclipse MAT to analyze the heap .
my JDK version is 1.6_23 and using JBOSS SOA ...