Here is the background: I have a 1 billion users in my external storage and most of them will be accessed at least once in a day, but only some active data will be accessed much more.
So for Guava, I may write:
cache.get(key, new Callable() {
Call() {
return getExternal(key);
}
});
However, Guava will cache the object into memory every time I load from external storage. But since I have a very large data set, and the very inactive data will be also loaded into memory and then exceed the max size, thus really active data will possibly be eliminated.
So I hope to control Guava, telling it that this data is not intended to be cached, like that:
cache.get(key, new Callable() {
Call() {
MyObject o = getExternal(key);
if (!o.isActive()) {
...//do NOT cache
}
}
});
Is it possible to achieve this goal in Guava?
As per Guava Cache Explanation, there's no way to prevent caching an object if you obtain it via
Cache.get
.So there are two ways to handle this:
1) Retrieve the values outside of the cache using
Cache.getIfPresent
, and insert them directly usingCache.put
(Inserted directly):2) Remove the inactive value from the cache using
Cache.invalidate
as soon as you obtain it fromCache.get
(Explicit removals):EDIT: There's actually a third way to go about it, but it's an even greater hack than Ben's suggestion:
where
MyObjectHolder
: