Is there softreference-based LinkedHashMap in Java? If no, has anyone got a snippet of code that I can probably reuse? I promise to reference it correctly.
Thanks.
|
Is there softreference-based LinkedHashMap in Java? If no, has anyone got a snippet of code that I can probably reuse? I promise to reference it correctly. Thanks. |
|||||
|
|
WeakHashMap doesn't preserve the insertion order. It thus cannot be considered as a direct replacement for LinkedHashMap. Moreover, the map entry is only released when the key is no longer reachable. Which may not be what you are looking for. If what you are looking for is a memory-friendly cache, here is a naive implementation you could use.
|
|||
|
|
|
The best idea I've seen for this is wrapping UPDATE: Just browsed the source of
I suggest browsing the source more in depth for other implementation ideas. UPDATE 2: kdgregory raises a good point in his comment - all my suggestion does is make sure the references in the |
|||||
|
|
have a look at this post. It shows how to implement a SoftHashMap... |
|||||
|