Skip to content

Commit b0ab826

Browse files
committed
fix latencies for now
1 parent 0d9ffb5 commit b0ab826

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

cachelib/cachebench/cache/CacheStats.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,7 @@ struct Stats {
130130

131131
out << folly::sformat("Background Tier 0 Total Classes Searched : {:,}", numBackgroundEvictorClasses) << std::endl;
132132

133-
if (numCacheGets > 0) {
133+
if (numCacheGets >= 0) {
134134
out << folly::sformat("Cache Gets : {:,}", numCacheGets) << std::endl;
135135
out << folly::sformat("Hit Ratio : {:6.2f}%", overallHitRatio)
136136
<< std::endl;

0 commit comments

Comments
 (0)