We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0b56527 commit a0b4fa3Copy full SHA for a0b4fa3
BitFaster.Caching.ThroughputAnalysis/Exporter.cs
@@ -131,13 +131,13 @@ public string MapTitle(Mode mode, int cacheSize)
131
switch (mode)
132
{
133
case Mode.Read:
134
- return $"Read throughput (100% cache hit) ({os}/{arch}/{fwk})";
+ return $"Read throughput, 100% cache hit ({os}/{arch}/{fwk})";
135
case Mode.ReadWrite:
136
return $"Read + Write throughput ({os}/{arch}/{fwk})";
137
case Mode.Update:
138
return $"Update throughput ({os}/{arch}/{fwk})";
139
case Mode.Evict:
140
- return $"Eviction throughput (100% cache miss) ({os}/{arch}/{fwk})";
+ return $"Eviction throughput, 100% cache miss ({os}/{arch}/{fwk})";
141
default:
142
return $"{mode} {cacheSize}";
143
}
0 commit comments