4 references to FixedKey
Microsoft.Extensions.Caching.MicroBenchmarks (4)
DistributedCacheBenchmarks.cs (4)
177total += _backend.Get(FixedKey())?.Length ?? 0; 185Func<Task<byte[]?>> callback = () => _backend.GetAsync(FixedKey()); 204total += (await _backend.GetAsync(FixedKey()))?.Length ?? 0; 212Func<Task<byte[]?>> callback = () => _backend.GetAsync(FixedKey());