This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
private static CurrencyExchange GetCurrencyRate(DateTime date) | |
{ | |
var key = date.Date.ToString("yyyy-MM-dd"); | |
return _cache.GetOrAdd(key, () => | |
{ | |
Console.WriteLine($"{DateTime.UtcNow}: Fetching from service"); | |
var response = _httpClient.GetAsync("http://api.fixer.io/" + key + "?base=USD").Result; | |
var json = response.Content.ReadAsStringAsync().Result; | |
return JsonConvert.DeserializeObject<CurrencyExchange>(json); | |
}, new TimeSpan(0, 0, 0, 30)); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment