Home | History | Annotate | Download | only in cache

Lines Matching defs:missCount

39  * <li>After successfully loading an entry {@code missCount} and {@code loadSuccessCount} are
42 * <li>When an exception is thrown while loading an entry, {@code missCount} and {@code
46 * for loading to complete (whether successful or not) and then increment {@code missCount}.
66 private final long missCount;
78 public CacheStats(long hitCount, long missCount, long loadSuccessCount,
81 checkArgument(missCount >= 0);
88 this.missCount = missCount;
97 * uncached value. This is defined as {@code hitCount + missCount}.
100 return hitCount + missCount;
126 public long missCount() {
127 return missCount;
132 * {@code missCount / requestCount}, or {@code 0.0} when {@code requestCount == 0}.
136 * that {@code missCount &gt;= loadSuccessCount + loadExceptionCount}. Multiple
141 return (requestCount == 0) ? 0.0 : (double) missCount / requestCount;
155 * This is always incremented in conjunction with {@link #missCount}, though {@code missCount}
166 * new value. This is always incremented in conjunction with {@code missCount}, though
167 * {@code missCount} is also incremented when cache loading completes successfully (see
223 Math.max(0, missCount - other.missCount),
239 missCount + other.missCount,
248 return Objects.hashCode(hitCount, missCount, loadSuccessCount, loadExceptionCount,
257 && missCount == other.missCount
270 .add("missCount", missCount)