1 write to _tagMasterKey
Microsoft.AspNetCore.OutputCaching.StackExchangeRedis (1)
RedisOutputCacheStore.cs (1)
85
_tagMasterKey
= (RedisKey)Encoding.UTF8.GetBytes(_options.InstanceName + "__MSOCT");
5 references to _tagMasterKey
Microsoft.AspNetCore.OutputCaching.StackExchangeRedis (5)
RedisOutputCacheStore.cs (5)
86
_tagMasterKeyArray = new[] {
_tagMasterKey
};
130
var gcKey =
_tagMasterKey
.Append("GC");
147
await foreach (var entry in cache.SortedSetScanAsync(
_tagMasterKey
).WithCancellation(cancellationToken))
157
return await cache.SortedSetRemoveRangeByScoreAsync(
_tagMasterKey
, start: 0, stop: keepValuesGreaterThan).ConfigureAwait(false);
283
await cache.SortedSetAddAsync(
_tagMasterKey
, tag, expiryTimestamp, SortedSetWhen.GreaterThan, TagCommandFlags).ConfigureAwait(false);