I'm a little confused by CacheBuilder and Cache introduced in Guava 10. The documentation hints that it's possible to overwrite values but as far as I can tell, Cache does not contain any methods for doing so. Any ideas?

I'm trying to construct a Map that expires a key 10 seconds after it was last read or written-to. When a value is looked up, I expect the previously-set value to be returned, or a default value to be computed if none exists.

link|improve this question

feedback

2 Answers

up vote 5 down vote accepted

AFAIK, not yet. But there's a thread mentioning that Cache.asMap.put is planned for release 11.

I'd say the current state of the Javadoc is a remnant if the CacheBuilder's evolution from the MapMaker (where the cache-setting method are currently deprecated).

I'm trying to construct a Map that expires a key 10 seconds after it was last read or written-to. When a value is looked up, I expect the previously-set value to be returned, or a default value to be computed if none exists.

Using expireAfterAccess(10, TimeUnit.SECONDS) will keep an entry alive for 10 seconds after any access to it. And the only values you'll get are those computed by your CacheLoader (either earlier or during get).

link|improve this answer
2  
Guava 10.0.1 should have fixed this. groups.google.com/group/guava-discuss/browse_thread/thread/… – jvdneste Oct 11 '11 at 7:49
feedback

Minor update. Cache.asMap().put() should show up in Guava 10.1 sometime during the first week of October, 2011. See this thread for more info.

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.