1 write to _perfCounters
System.Runtime.Caching (1)
System\Runtime\Caching\MemoryCacheStore.cs (1)
39_perfCounters = perfCounters;
15 references to _perfCounters
System.Runtime.Caching (15)
System\Runtime\Caching\MemoryCacheStore.cs (15)
83if (_perfCounters != null && _countersSupported) 85_perfCounters.Increment(CounterName.Entries); 86_perfCounters.Increment(CounterName.Turnover); 118if (_perfCounters != null && _countersSupported) 120_perfCounters.Decrement(CounterName.Entries); 121_perfCounters.Increment(CounterName.Turnover); 146if (updatePerfCounters && _perfCounters != null && _countersSupported) 148_perfCounters.Increment(CounterName.Hits); 149_perfCounters.Increment(CounterName.HitRatio); 150_perfCounters.Increment(CounterName.HitRatioBase); 155if (updatePerfCounters && _perfCounters != null && _countersSupported) 157_perfCounters.Increment(CounterName.Misses); 158_perfCounters.Increment(CounterName.HitRatioBase); 408if (trimmed > 0 && _perfCounters != null && _countersSupported) 411_perfCounters.IncrementBy(CounterName.Trims, trimmed);