Stewart Lynch's Swift Concurrency Series

This was a great series to get up to speed on Async Await. One thing I’m trying to figure out though is every time the list of users is displayed the app makes a call out to the api, which is great if that information is constantly changing outside of the app, but if we only wanted that data to be loaded once per app session what would be a good approach to limit the calls out the the api? Does anyone have any thoughts? I don’t want to keep calling out to a remote service/API if there is no change or need to do so.