我正在尝试使用LRU缓存,如此处所示Java time-based map/cache with expiring keys
我的代码:
import com.google.common.cache.CacheBuilder
import java.util.concurrent.TimeUnit
fun main(args: Array<String>) {
val cache = CacheBuilder.newBuilder().maximumSize(100).
expireAfterAccess(10, TimeUnit.HOURS)
.build<String, String>()
cache.put("a", "blah")
val x = cache.getIfPresent("a")
cache.stats().also { println(it) }
println(x)
}
输出:
CacheStats{hitCount=0, missCount=0, loadSuccessCount=0, loadExceptionCount=0, totalLoadTime=0, evictionCount=0}
blah
我期待hitCount
为1而不是0。
我在这里错过了什么?
你错过了.recordStats()
上的CacheBuilder
电话:
在缓存操作期间启用
CacheStats
的累积。没有这个Cache.stats()
将返回所有统计数据的零。