more precise count of boolean expiry memo caches

This commit is contained in:
Thibault Duplessis 2012-06-17 20:15:48 +02:00
parent 84c2208111
commit 4c2733f5d1

View file

@ -30,5 +30,5 @@ abstract class BooleanExpiryMemo(timeout: Int) {
def keys: Iterable[String] = cache.asMap.keys
def count = cache.size
def preciseCount = keys.toList.size
}