Created
August 4, 2011 05:53
-
-
Save fennb/1124579 to your computer and use it in GitHub Desktop.
Asynchronous cache failover example
This file contains hidden or 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 | |
// ... | |
}); | |
} 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