Skip to content

Instantly share code, notes, and snippets.

@sajadkardel
Last active April 2, 2021 10:48
Show Gist options
  • Save sajadkardel/56c4ebcbc98938e12073ef48db094e13 to your computer and use it in GitHub Desktop.
Save sajadkardel/56c4ebcbc98938e12073ef48db094e13 to your computer and use it in GitHub Desktop.
Cache in Asp.Net Core Article
MemoryCacheEntryOptions options = new MemoryCacheEntryOptions();
// Low / Normal / High / NeverRemove
options.Priority = CacheItemPriority.High;
cache.Set("CacheKey", data, options);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment