Skip to content

Instantly share code, notes, and snippets.

@pilif
Created April 21, 2010 18:16
Show Gist options
  • Save pilif/374189 to your computer and use it in GitHub Desktop.
Save pilif/374189 to your computer and use it in GitHub Desktop.
var sys = require('sys');
var client = require("./redis-node-client/lib/redis-client").createClient();
client.set('test:foo', 'bar', function(err, data){
sys.p(err);
sys.p(data);
});
setTimeout(function(){
client.get('test:foo', function(err, data){
sys.p(err);
sys.p(""+data);
client.close();
})}, 5000);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment