Skip to content

Instantly share code, notes, and snippets.

@ealsur
Last active July 14, 2021 16:07
Show Gist options
  • Save ealsur/88521c2dc139f391f2786ff40e985565 to your computer and use it in GitHub Desktop.
Save ealsur/88521c2dc139f391f2786ff40e985565 to your computer and use it in GitHub Desktop.
public class MyBusinessClass
{
private readonly IDistributedCache cache;
public MyBusinessClass(IDistributedCache cache)
{
this.cache = cache;
}
public async Task SomeOperationAsync()
{
string someCachedValue = await this.cache.GetStringAsync("someKey");
/* Use the cache */
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment