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 thread-safe Map with a time limited expiry policy. I tried looking for an existing library, but could not find one. Jboss cache is going to be a heavy alternative for my requirement. I have a first cut draft in place. Please have a look at the code posted on pastebin

I need constructive comments and enhancement suggestions. Thanks in advance.

share|improve this question

2 Answers

up vote 6 down vote accepted

Take a look at Guava MapMaker: http://guava-libraries.googlecode.com/svn/trunk/javadoc/com/google/common/collect/MapMaker.html

It does exactly what you are looking for.

share|improve this answer
Thats great! Thanks, I forgot about guava. – questzen Apr 12 '11 at 15:32

i'm sure ehcache would have something that would work. maybe a bit "lighter" than jboss cache.

share|improve this answer
I will have a look at it, thanks for the suggestion. – questzen Apr 12 '11 at 15:55

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.