Do any of you know of a Java Map or similar standard data store that automatically purges entries after a given timeout? Preferably in an open source library that is accessible via maven?

I know of ways to implement the functionality myself and have done it several times in the past, so I'm not asking for advice in that respect, but for pointers to a good reference implementation.

WeakReference based solutions like WeakHashMap are not an option, because my keys are likely to be non-interned strings and I want a configurable timeout that's not dependent on the garbage collector.

Ehcache is also an option I wouldn't like to rely on because it needs external configuration files. I am looking for a code-only solution.

link|improve this question

2  
Uhmmm, shervin, technically those tags belong to your answer, not to the question. But I'll leave them as I like the guava tag. – Sean Patrick Floyd Sep 27 '10 at 11:45
feedback

5 Answers

up vote 30 down vote accepted

Yes. Google Collections, or Guava as it is named now has something called MapMaker which can do exactly that.

ConcurrentMap<Key, Graph> graphs = new MapMaker()
   .concurrencyLevel(4)
   .softKeys()
   .weakValues()
   .maximumSize(10000)
   .expiration(10, TimeUnit.MINUTES)
   .makeComputingMap(
       new Function<Key, Graph>() {
         public Graph apply(Key key) {
           return createExpensiveGraph(key);
         }
       });

Update:

As of guava 10.0 (released September 28, 2011) many of these MapMaker methods have been deprecated in favour of the new CacheBuilder:

Cache<Key, Graph> graphs = CacheBuilder.newBuilder()
    .concurrencyLevel(4)
    .weakKeys()
    .maximumSize(10000)
    .expireAfterWrite(10, TimeUnit.MINUTES)
    .build(
        new CacheLoader<Key, Graph>() {
          public Graph load(Key key) throws AnyException {
            return createExpensiveGraph(key);
          }
        });
link|improve this answer
1  
Awesome, I knew Guava had an answer but I couldn't find it! (+1) – Sean Patrick Floyd Sep 27 '10 at 9:19
I know you have just copied the example from the javadoc, but as I ran into the same requirement, I just want to make sure the map properties are correct: Wouldn't it be better to use expireAfterAccess (instead of expiration) and softValues (instead of weakValues)? – Kariem Apr 13 '11 at 16:08
2  
As from v10, you should be using CacheBuilder instead (guava-libraries.googlecode.com/svn/trunk/javadoc/com/google/…) since expiration etc have been deprecated in MapMaker – user149789 Sep 14 '11 at 11:00
feedback

Check out Google Collections (now called Guava). It has a map which can timeout entries automatically.

link|improve this answer
feedback

Google collections (guava) has the MapMaker in which you can set time limit(for expiration) and you can use soft or weak reference as you choose using a factory method to create instances of your choice.

link|improve this answer
feedback

It may not be a good solution, but you can always take a look at classes like DelayQueue.

link|improve this answer
Isn't that the opposite of what I want? An unbounded blocking queue of Delayed elements, in which an element can only be taken when its delay has expired – Sean Patrick Floyd Sep 27 '10 at 9:21
Oh yes, you're right, sorry for the misundestanding. I was sure some kind of Queue would do the job. – Riduidel Sep 27 '10 at 9:56
feedback

Sounds like ehcache is overkill for what you want, however note that it does not need external configuration files.

It is generally a good idea to move configuration into a declarative configuration files ( so you don't need to recompile when a new installation requires a different expiry time ), but it is not at all required, you can still configure it programmatically. http://www.ehcache.org/documentation/user-guide/configuration

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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