Skip to content

Instantly share code, notes, and snippets.

@gjohnson
Last active January 3, 2016 04:29
Show Gist options
  • Save gjohnson/8409186 to your computer and use it in GitHub Desktop.
Save gjohnson/8409186 to your computer and use it in GitHub Desktop.
redis.setnx('unique-key|12345', 1, function (err, ok) {
if (err) return dealwithit(err);
if (ok) {
redis.hset('unique-key|12345|data', 'field', 'value', callback);
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment