1 write to _cache
NuGet.Protocol (1)
LegacyFeed\ODataServiceDocumentResourceV2Provider.cs (1)
32
_cache
= new ConcurrentDictionary<string, ODataServiceDocumentCacheInfo>(StringComparer.OrdinalIgnoreCase);
3 references to _cache
NuGet.Protocol (3)
LegacyFeed\ODataServiceDocumentResourceV2Provider.cs (3)
45
if (!
_cache
.TryGetValue(url, out cacheInfo) || entryValidCutoff > cacheInfo.CachedTime)
57
if (!
_cache
.TryGetValue(url, out cacheInfo) || entryValidCutoff > cacheInfo.CachedTime)
70
_cache
.AddOrUpdate(url, cacheEntry, (key, value) => cacheEntry);