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

Versions

Current Tags

  • Version
    Downloads (Last 7 Days)
    • Tag
  • 0.0.3
    2
    • latest

Version History

  • Version
    Downloads (Last 7 Days)
    • Published
  • 0.0.3
    2
  • 0.0.2
    0

Package Sidebar

Install

npm i redis-identity

Weekly Downloads

2

Version

0.0.3

License

MIT

Last publish

Collaborators

  • gjohnson