Skip to content

Instantly share code, notes, and snippets.

@uzumaki-narut0
Created July 3, 2020 08:40
Show Gist options
  • Save uzumaki-narut0/3a8781b4272c7829328bbe5f8bbf15a8 to your computer and use it in GitHub Desktop.
Save uzumaki-narut0/3a8781b4272c7829328bbe5f8bbf15a8 to your computer and use it in GitHub Desktop.
private async Task<T> GetMemcacheObjectAsync<T>(string key, Func<Task<T>> dbCallback, TimeSpan cacheDuration)
{
t = await dbCallback();
await StoreObjectAsync(StoreMode.Set, key, t, cacheDuration);
return t;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment