Skip to content

Instantly share code, notes, and snippets.

@alexdresko
Last active August 29, 2015 14:02
Show Gist options
  • Save alexdresko/bd08881515a0a7a5ad0f to your computer and use it in GitHub Desktop.
Save alexdresko/bd08881515a0a7a5ad0f to your computer and use it in GitHub Desktop.
var stringToCache = "tada!!!";
var absoluteExpirationForCache =
DateTime.Now.AddSeconds(10);
var yeResult = (string) MemoryCache.Default
.AddOrGetExisting
("AnyOleKey", stringToCache, absoluteExpirationForCache);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment