Created
May 19, 2012 16:57
-
-
Save fukayatsu/2731494 to your computer and use it in GitHub Desktop.
redis with coffee
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
redis = require 'redis' | |
rc = redis.createClient() | |
rc.on 'error', (err)-> | |
console.log 'Error: ' + err | |
rc.set 'hoge', 'piyo', redis.print | |
rc.get 'hoge', redis.print |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment