Skip to content

Instantly share code, notes, and snippets.

@dreadjr
Created October 23, 2012 22:41
Show Gist options
  • Save dreadjr/3942223 to your computer and use it in GitHub Desktop.
Save dreadjr/3942223 to your computer and use it in GitHub Desktop.
var resque = require('coffee-resque').connect({
host: 'redisHost',
port: 6379
});
var sequence = 0;
setInterval(function() {
var args = [1, sequence++];
resque.enqueue('math', 'add', args);
console.log('add ' + args);
}, 1000);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment