vote up 2 vote down star
1

I'm looking for a simple Java in-memory cache that has good concurrency (so LinkedHashMap isn't good enough), and which can be serialized to disk periodically.

One feature I need, but which has proved hard to find, is a way to "peek" at an object. By this I mean retrieve an object from the cache without causing the cache to hold on to the object any longer than it otherwise would have.

Update: An additional requirement I neglected to mention is that I need to be able to modify the cached objects (they contain float arrays) in-place.

Can anyone provide any recommendations?

flag

I'm looking for something similar that is "within process" and lighter weight. I want to use it to store some data within an Eclipse plugin in the heap. Ehcache and JCS seem too heavyweight/distributed/J2EE for my taste. – Uri Feb 22 at 20:46

4 Answers

vote up 7 vote down check

Ehcache is a pretty good solution for this and has a way to peek (getQuiet() is the method) such that it doesn't update the idle timestamp. Internally, Ehcache is implemented with a set of maps, kind of like ConcurrentHashMap, so it has similar kinds of concurrency benefits.

link|flag
Thanks, an additional question: If I retrieve an object from EHcache (say, an array), and modify it - will the object be updated in the cache? ie. is EHCache maintaining references to the objects? – sanity Feb 22 at 20:38
I believe so but to do this safely you must appropriately lock the object, of course. – Alex Miller Feb 23 at 2:49
vote up 1 vote down

How about this: http://jakarta.apache.org/jcs/

link|flag
vote up 0 vote down

Try Ehcache? It allows you to plug in your own caching expiry algorithms so you could control your peek functionality.

You can serialize to disk, database, across a cluster etc...

link|flag
vote up 0 vote down

If you're needing something simple, would this fit the bill?

Map<K, V> myCache = Collections.synchronizedMap(new WeakHashMap<K, V>());

It wont save to disk, but you said you wanted simple...

Links:

link|flag

Your Answer

Get an OpenID
or

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