On 3 November 2011 15:47, Vladimir Blagojevic <vblagoje(a)redhat.com> wrote:
Sanne have you integrated this? I would love to see what you have
done!
Yes it's in master as ISPN-1459
Again it's a super-simple patch; it's all about
the following change:
for each entry {
long now = System.currentTimeMillis();
if (entry.isExpired(now)){
evict(entry);
}
}
into
long now = System.currentTimeMillis();
for each entry {
if (entry.isExpired(now)){
evict(entry);
}
}
(which involves some API chages, but that's the point).
Cheers,
Sanne