-
-
Save EGreg/1678395 to your computer and use it in GitHub Desktop.
Asynchronous cache failover example
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 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 | |
doSomething(myThing); | |
}); | |
} else { | |
// We have a thing from cache, do something with result | |
doSomething(myThing); | |
} | |
}); | |
function doSomething(myThing) { | |
// gee that wasn't so hard, was it | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment