As of Guava 10, MapMaker.softKeys is deprecated, and the corresponding method doesn't exist in CacheBuilder.
Why was this change made? What do I need to do with existing code that use it?
|
As of Guava 10, Why was this change made? What do I need to do with existing code that use it? |
|||
|
|
|
Here is my attempt of explanation of the issue (a little more complete to Chris' response) http://groups.google.com/group/guava-discuss/browse_thread/thread/764af1e627d6fa0e?pli=1 |
|||
|
|
|
I wrote the question because, initially, I did genuinely wonder why (as I had existing code that used In short, the reason was that In general, you use soft references if you want the object to stick around for a little after all the strong references are gone; in contrast, with weak references, the object usually gets collected soon once there are no strong or soft references left. This is useful for cached values that you want to hold on to temporarily, so that a lookup using the corresponding key will "revive" a strong reference for the value. However, this behaviour doesn't make any sense for keys:
Thus, most times when coming across code that uses † I am not considering the case of fetching the entry via iteration, or anything other than key-based lookup, since maps are primarily about key-based operations. |
|||||||||||||||
|