Skip to content

Instantly share code, notes, and snippets.

@fennb
Created August 4, 2011 05:53
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save fennb/1124579 to your computer and use it in GitHub Desktop.
Save fennb/1124579 to your computer and use it in GitHub Desktop.
Asynchronous cache failover example
// asynchronous version
asynchronousCache.get("id:3244", function(err, myThing) {
if (myThing == null) {
asynchronousDB.query("SELECT * from something WHERE id = 3244", function(err, myThing) {
// We now have a thing from DB, do something with result
// ...
});
} else {
// We have a thing from cache, do something with result
// ...
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment