Looking for simple Java in-memory cache - Stack Overflow most recent 30 from stackoverflow.com2009-12-15T03:52:17Zhttp://stackoverflow.com/feeds/question/575685http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/575685/looking-for-simple-java-in-memory-cache2Looking for simple Java in-memory cachesanity2009-02-22T20:11:54Z2009-02-23T01:02:22Z
<p>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.</p>
<p>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.</p>
<p><strong>Update:</strong> 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.</p>
<p>Can anyone provide any recommendations?</p>
http://stackoverflow.com/questions/575685/looking-for-simple-java-in-memory-cache/575693#5756931Answer by TofuBeer for Looking for simple Java in-memory cacheTofuBeer2009-02-22T20:16:31Z2009-02-22T20:16:31Z<p>How about this: <a href="http://jakarta.apache.org/jcs/" rel="nofollow">http://jakarta.apache.org/jcs/</a></p>
http://stackoverflow.com/questions/575685/looking-for-simple-java-in-memory-cache/575696#5756967Answer by Alex Miller for Looking for simple Java in-memory cacheAlex Miller2009-02-22T20:17:01Z2009-02-22T20:17:01Z<p><a href="http://ehcache.sourceforge.net/" rel="nofollow">Ehcache</a> is a pretty good solution for this and has a way to peek (<a href="http://ehcache.sourceforge.net/apidocs/net/sf/ehcache/Cache.html#getQuiet(java.lang.Object)" rel="nofollow">getQuiet()</a> 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.</p>
http://stackoverflow.com/questions/575685/looking-for-simple-java-in-memory-cache/575699#5756990Answer by Stephen for Looking for simple Java in-memory cacheStephen2009-02-22T20:17:52Z2009-02-22T20:17:52Z<p>Try <a href="http://ehcache.sourceforge.net/" rel="nofollow">Ehcache</a>? It allows you to plug in your own caching expiry algorithms so you could control your peek functionality. </p>
<p>You can serialize to disk, database, across a cluster etc...</p>
http://stackoverflow.com/questions/575685/looking-for-simple-java-in-memory-cache/576239#5762391Answer by Evan for Looking for simple Java in-memory cacheEvan2009-02-23T01:02:22Z2009-02-23T01:02:22Z<p>If you're needing something simple, would this fit the bill?</p>
<pre><code>Map<K, V> myCache = Collections.synchronizedMap(new WeakHashMap<K, V>());
</code></pre>
<p>It wont save to disk, but you said you wanted simple...</p>
<p>Links:</p>
<ul>
<li><a href="http://java.sun.com/javase/6/docs/api/java/util/Collections.html#synchronizedMap(java.util.Map)" rel="nofollow">Collections.synchronizedMap</a></li>
<li><a href="http://java.sun.com/javase/6/docs/api/java/util/WeakHashMap.html" rel="nofollow">WeakHashMap</a></li>
</ul>