Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I need a Map (or any collection) that supports time-to-idle for entries and removes them automatically.

I know there is guava MapMaker, but it expires its elements on subsequent read/write operations rather than automatically, by a running thread. Furthermore the expiration capabilities of MapMaker are now moved to CacheBuilder. The thing is, I don't want a cache - I want expiring elements

Is there something ready-to-use? (it's not hard to implement it myself, but it's better to reuse something)

share|improve this question
Do you need the elements to somehow explicitly "die" (e.g. by calling some method) on time? If you just need to throw away expired elements, checking elements' timestamps at access time should suffice. – 9000 Oct 14 '11 at 0:03
I need them to die as soon as they expire, and to be notified about that. Something like an expiring web session – Bozho Oct 14 '11 at 6:02
1  
You can have a running thread periodically call Cache.cleanup() to trigger eviction of expired entries. While not immediate, a running thread internally had too many limitations (not J2EE/GAE compatible, suffers from dogpile effect, etc). – Ben Manes Oct 14 '11 at 23:58
@Ben Manes thanks for the suggestion. However I don't like the Cache interface. First, it forces you to specify value computation. I don't need that. If I return null, it throws a NPE. It's because it always calls getOrCompute, and I need just get - like a simple map. Then, even with catching the NPE, I couldn't make it work (perhaps my fault), but it was always expiring entries, even though they were accessed. – Bozho Oct 15 '11 at 8:31
That's fair. There was debate of whether a null return from a loader was okay (e.g. cache miss). As its easier to loosen a constraint than add it, that may change prior to removing the @Beta status. You can use cache.asMap() to use a map view of the cache, where a get() will not compute and writes are allowed (in 10.0.1). – Ben Manes Oct 15 '11 at 8:38
show 1 more comment

2 Answers

Maybe: http://code.google.com/p/concurrentlinkedhashmap/wiki/ExpirableCache
Rather not... it has lots of unresolved imports.

share|improve this answer
good, I'll check it tomorrow – Bozho Oct 13 '11 at 22:17
Its a (old) demonstrative tutorial instead of a provided library, so unresolved imports seemed fair. Its a naive and common approach. I prefer the amortized approach we added to Guava since it avoids stale events piling up. – Ben Manes Oct 14 '11 at 23:59

If nothing else, you can supply a dummy CacheLoader that just throws exceptions, then just don't call Cache.get -- only interact with the asMap view. It's not pretty, but we're working to support this case better in 11.0. Make sure you have Guava 10.0.1 if you try this.

And yes, Cache.cleanUp is there for you to call as often as you want from whichever threads you want.

share|improve this answer
tried that, but the asMap view interactions don't refresh the last access. – Bozho Oct 17 '11 at 8:27

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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