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)
45if (!_cache.TryGetValue(url, out cacheInfo) || entryValidCutoff > cacheInfo.CachedTime) 57if (!_cache.TryGetValue(url, out cacheInfo) || entryValidCutoff > cacheInfo.CachedTime) 70_cache.AddOrUpdate(url, cacheEntry, (key, value) => cacheEntry);