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?

link|improve this question

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 '09 at 20:46
feedback

5 Answers

up vote 15 down vote accepted

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|improve this answer
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 '09 at 20:38
I believe so but to do this safely you must appropriately lock the object, of course. – Alex Miller Feb 23 '09 at 2:49
feedback

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:

(As Adam commented, synchronising a map has a performance hit. Not saying the idea doesn't have hairs on it, but would suffice as a quick and dirty solution.)

link|improve this answer
Synchronizing an entire gigantic map is a hefty penalty. You could easily store weak types in a concurrent hash map and remove them periodically. – Adam Gent Feb 23 '11 at 0:11
feedback

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

link|improve this answer
feedback

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|improve this answer
feedback

You need NCache. It is a feature-rich distributed caching solution that gives you scalable performance even at peak load times.

It lets you expire the item using Absolute or Sliding expiration. Moreover you can use read-through, write-through caching, database sync and many more useful features.

link|improve this answer
Considering mention of "in-memory", it sounds like this might be good solution for someone else... – StaxMan Oct 11 '11 at 15:53
feedback

Your Answer

 
or
required, but never shown

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