redis-identity

0.0.3 • Public • Published

redis-identity

Redis script for mapping external ID's to sequential ones. Adapted from crashlytics.

install

$ npm install redis-identity

usage

Pass in a node-redis client, and an optional key to use for the id mappings.

var redis = require('redis')
  , client = redis.createClient()
  , identity = require('redis-identity')(client);
 
identity('xxx-123-456', function(err, id){
  // ...
});

The second argument is the optional for the mapping, it defaults to identity-map.

var redis = require('redis')
  , client = redis.createClient()
  , identity = require('redis-identity')(client, 'my-id-map');
 
identity('xxx-123-456', function(err, id){
  // ...
});

notes

  • this will only work with node_redis >= 0.8.2.

license

MIT

Dependents (1)

Package Sidebar

Install

npm i redis-identity

Weekly Downloads

1

Version

0.0.3

License

MIT

Last publish

Collaborators

  • gjohnson