Java com.google.common.cache CacheStats fields, constructors, methods, implement or subclass

Example usage for Java com.google.common.cache CacheStats fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for com.google.common.cache CacheStats.

The text is from its open source code.

Field

Constructor

Method

doubleaverageLoadPenalty()
Returns the average time spent loading new values.
doublehitRate()
Returns the ratio of cache requests which were hits.
longloadCount()
Returns the total number of times that Cache lookup methods attempted to load new values.
doubleloadExceptionRate()
Returns the ratio of cache loading attempts which threw exceptions.
CacheStatsminus(CacheStats other)
Returns a new CacheStats representing the difference between this CacheStats and other .
doublemissRate()
Returns the ratio of cache requests which were misses.
longrequestCount()
Returns the number of times Cache lookup methods have returned either a cached or uncached value.
StringtoString()