vote up 1 vote down star

I want to create a LinkedHashMap which will limit its size based on available memory (ie. when freeMemory + (maxMemory - allocatedMemory) gets below a certain threshold). This will be used as a form of cache, probably using "least recently used" as a caching strategy.

My concern though is that allocatedMemory also includes (I assume) un-garbage collected data, and thus will over-estimate the amount of used memory. I'm concerned about the unintended consequences this might have.

For example, the LinkedHashMap may keep deleting items because it thinks there isn't enough free memory, but the free memory doesn't increase because these deleted items aren't being garbage collected immediately.

Does anyone have any experience with this type of thing? Is my concern warranted? If so, can anyone suggest a good approach?

I should add that I also want to be able to "lock" the cache, basically saying "ok, from now on don't delete anything because of memory usage issues".

flag

What is your application here? It's hard to come up with a good answer without an idea of what the background intention is. Is your HashMap a cache or what? – jprete Oct 29 at 20:17
jprete, I've tried to clarify this - you are right, its a cache – sanity Oct 29 at 20:24
This is a typical example of where GC and the java memory management shows its real messy face. It would be so simple to do such a thing in C++. Using GC, you cant execute commands like delete or free. – RED SOFT ADAIR-StefanWoe Oct 29 at 20:57

4 Answers

vote up 1 vote down check

I know I'm biased, but I really have to strongly recommend our MapMaker for this. Use the softKeys() or softValues() feature, depending on whether it's GC collection of the key or of the value that more aptly describes when an entry can be cleaned up.

link|flag
1  
I would like to use MapMaker (I make extensive use of Google Collections in my code), but is there any way to make it behave like an LRU cache which scales according to available memory? Additionally, is there any way to "lock" it so that it will no-longer delete entries in response to garbage collection? – sanity Nov 5 at 14:14
1  
"behave like an LRU cache..." -- that pretty much describes exactly what soft references will give you, yes. "lock" it -- the only sensible answer to this involves copying the map: Map<Key, Val> strongCache = Maps.newHashMap(cache); – Kevin Bourrillion Nov 5 at 17:45
sorry about the < garbage; there's no preview so I had to guess whether I would have to escape or not. :( – Kevin Bourrillion Nov 5 at 17:46
vote up 0 vote down

Caches tend to be problematic. IIRC, there's a SoftCache in Sun's JRE that has had many problems.

Anyway, the simplest thing is to use SoftReferences in the map. This should work fine so long as the overhead of SoftReference plus Map.Entry is significantly lower than the cached data.

Alternatively you can, like WeakHashMap, use a ReferenceQueue and either poll it or have a thread blocking on it (one thread per instance, unfortunately). Be careful with synchronisation issues.

"Locking" the map, you probably want to avoid if necessary. You'd need keep strong references to all the data (and evict if not null). That is going to be ugly.

link|flag
For locking, I was thinking I could simply copy the whole thing into a normal HashMap – sanity Oct 29 at 20:47
Well, you can copy the contents of the map, but then you have to dereference the soft references as well. Although copying instead of locking is a better way to go. – Tom Hawtin - tackline Oct 29 at 21:43
vote up 0 vote down

I would strongly suggest using something like Ehcache instead of re-inventing a caching system. It's super simple to use, very configurable, and works great.

link|flag
vote up 0 vote down

As matt b said, something like Ehcache or JbossCache is a good first step.

If you want something light-weight and in-process, look at google collections. For example, you can use MapMaker (http://google-collections.googlecode.com/svn/trunk/javadoc/index.html?com/google/common/collect/BiMap.html) to make a map with Soft/Weak keys and values, so it would cache only those items it has room for (though you wouldn't get LRU).

link|flag
Oops - better link: google-collections.googlecode.com/svn/trunk/… – nojo Oct 30 at 14:51

Your Answer

Get an OpenID
or

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