{"_id":"cache-manager-redis","_rev":"43-62874dcdce06537ee72eef1e4d81d911","name":"cache-manager-redis","time":{"modified":"2022-06-13T05:23:21.281Z","created":"2015-03-30T22:16:12.435Z","0.1.0":"2015-03-30T22:16:12.435Z","0.1.1":"2015-03-30T22:31:31.322Z","0.1.3":"2015-03-31T01:00:18.939Z","0.1.4":"2015-05-12T12:59:27.352Z","0.1.5":"2015-05-12T13:03:38.248Z","0.1.6":"2015-05-30T00:15:25.467Z","0.1.7":"2015-05-30T00:33:02.908Z","0.1.8":"2015-07-14T20:28:09.299Z","0.1.9":"2015-08-20T13:55:00.076Z","0.1.10":"2015-09-17T15:05:07.452Z","0.1.11":"2015-10-19T09:05:34.814Z","0.1.12":"2015-10-25T15:34:54.344Z","0.2.0":"2015-11-15T20:25:40.866Z","0.2.1":"2015-11-15T23:37:37.937Z","0.2.2":"2016-01-22T02:28:38.646Z","0.2.3":"2016-08-11T09:27:01.003Z","0.2.4":"2016-09-08T16:00:43.113Z","0.2.5":"2016-11-07T11:13:11.889Z","0.2.6":"2016-11-10T16:46:07.541Z","0.3.0":"2016-11-10T16:47:35.218Z","0.3.1":"2016-11-14T08:54:33.539Z","0.3.2":"2016-11-15T09:02:54.025Z","0.4.0":"2017-01-02T16:50:32.869Z","0.5.0":"2017-09-05T21:34:39.527Z","0.6.0":"2018-04-20T12:27:56.034Z"},"maintainers":[{"email":"npm@dial-once.com","name":"dial-once"},{"email":"julien.kernech@outlook.com","name":"jkernech"},{"email":"khatal.yacine@gmail.com","name":"ky23"},{"email":"mihovil.rister@gmail.com","name":"mrister"}],"dist-tags":{"latest":"0.6.0"},"description":"Redis store for the node-cache-manager","readme":"Node Cache Manager store for Redis\n==================================\n\n[![Codacy Badge](https://api.codacy.com/project/badge/grade/3d5933f95c88472d9075dc302c8d62e1)](https://www.codacy.com/app/dialonce-jkernech/node-cache-manager-redis) [![Codacy Badge](https://api.codacy.com/project/badge/coverage/3d5933f95c88472d9075dc302c8d62e1)](https://www.codacy.com/app/dialonce-jkernech/node-cache-manager-redis) [![Dependency Status](https://david-dm.org/dial-once/node-cache-manager-redis.svg)](https://david-dm.org/dial-once/node-cache-manager-redis)\n\nThe Redis store for the [node-cache-manager](https://github.com/BryanDonovan/node-cache-manager) module.\n\nInstallation\n------------\n\n```sh\nnpm install cache-manager-redis --save\n```\n\nUsage examples\n--------------\n\nHere are examples that demonstrate how to implement the Redis cache store.\n\n### Single store\n\n```js\nvar cacheManager = require('cache-manager');\nvar redisStore = require('cache-manager-redis');\n\nvar redisCache = cacheManager.caching({\n\tstore: redisStore,\n\thost: 'localhost', // default value\n\tport: 6379, // default value\n\tauth_pass: 'XXXXX',\n\tdb: 0,\n\tttl: 600\n});\n\nvar ttl = 5;\n\n// listen for redis connection error event\nredisCache.store.events.on('redisError', function(error) {\n\t// handle error here\n\tconsole.log(error);\n});\n\nredisCache.set('foo', 'bar', { ttl: ttl }, function(err) {\n    if (err) {\n      throw err;\n    }\n\n    redisCache.get('foo', function(err, result) {\n        console.log(result);\n        // >> 'bar'\n        redisCache.del('foo', function(err) {});\n    });\n});\n\nfunction getUser(id, cb) {\n    setTimeout(function () {\n        console.log(\"Returning user from slow database.\");\n        cb(null, {id: id, name: 'Bob'});\n    }, 100);\n}\n\nvar userId = 123;\nvar key = 'user_' + userId;\n\n// Note: ttl is optional in wrap()\nredisCache.wrap(key, function (cb) {\n    getUser(userId, cb);\n}, { ttl: ttl }, function (err, user) {\n    console.log(user);\n\n    // Second time fetches user from redisCache\n    redisCache.wrap(key, function (cb) {\n        getUser(userId, cb);\n    }, function (err, user) {\n        console.log(user);\n    });\n});\n\n// The del() method accepts a single key or array of keys,\n// with or without a callback.\nredisCache.set('foo', 'bar', function () {\n    redisCache.set('bar', 'baz', function() {\n        redisCache.set('baz', 'foo', function() {\n          redisCache.del('foo');\n          redisCache.del(['bar', 'baz'], function() { });\n        });\n    });\n});\n\n// The keys() method uses the Redis SCAN command and accepts\n// optional `pattern` and `options` arguments. The `pattern`\n// must be a Redis glob-style string and defaults to '*'. The\n// options argument must be an object and accepts a single\n// `scanCount` property, which determines the number of elements\n// returned internally per call to SCAN. The default `scanCount`\n// is 100.\nredisCache.set('foo', 'bar', function () {\n    redisCache.set('far', 'boo', function () {\n        redisCache.keys('fo*', function (err, arrayOfKeys) {\n            // arrayOfKeys: ['foo']\n        });\n        \n        redisCache.keys(function (err, arrayOfKeys) {\n            // arrayOfKeys: ['foo', 'far']\n        });\n        \n        redisCache.keys('fa*', { scanCount: 10 }, function (err, arrayOfKeys) {\n            // arrayOfKeys: ['far']\n        });\n    });\n});\n\n```\n\n### Multi-store\n\n```js\nvar cacheManager = require('cache-manager');\nvar redisStore = require('cache-manager-redis');\n\nvar redisCache = cacheManager.caching({store: redisStore, db: 0, ttl: 600});\nvar memoryCache = cacheManager.caching({store: 'memory', max: 100, ttl: 60});\n\nvar multiCache = cacheManager.multiCaching([memoryCache, redisCache]);\n\n\nuserId2 = 456;\nkey2 = 'user_' + userId;\nttl = 5;\n\n// Sets in all caches.\nmultiCache.set('foo2', 'bar2', { ttl: ttl }, function(err) {\n    if (err) { throw err; }\n\n    // Fetches from highest priority cache that has the key.\n    multiCache.get('foo2', function(err, result) {\n        console.log(result);\n        // >> 'bar2'\n\n        // Delete from all caches\n        multiCache.del('foo2');\n    });\n});\n\n// Note: ttl is optional in wrap()\nmultiCache.wrap(key2, function (cb) {\n    getUser(userId2, cb);\n}, { ttl: ttl }, function (err, user) {\n    console.log(user);\n\n    // Second time fetches user from memoryCache, since it's highest priority.\n    // If the data expires in the memory cache, the next fetch would pull it from\n    // the 'someOtherCache', and set the data in memory again.\n    multiCache.wrap(key2, function (cb) {\n        getUser(userId2, cb);\n    }, function (err, user) {\n        console.log(user);\n    });\n});\n```\n\n### Using a URL instead of options (if url is correct it overrides options host, port, db, auth_pass and ttl)\nUrls should be in this format `redis://[:password@]host[:port][/db-number][?ttl=value]`\n```js\nvar cacheManager = require('cache-manager');\nvar redisStore = require('cache-manager-redis');\n\nvar redisCache = cacheManager.caching({\n\tstore: redisStore,\n\turl: 'redis://:XXXX@localhost:6379/0?ttl=600'\n});\n\n// proceed with redisCache\n```\n\n### Seamless compression (currently only supports Node's built-in zlib / gzip implementation)\n\n```js\n// Compression can be configured for the entire cache.\nvar redisCache = cacheManager.caching({\n\tstore: redisStore,\n\thost: 'localhost', // default value\n\tport: 6379, // default value\n\tauth_pass: 'XXXXX',\n\tdb: 0,\n\tttl: 600,\n\tcompress: true\n});\n\n// Or on a per command basis. (only applies to get / set / wrap)\nredisCache.set('foo', 'bar', { compress: false }, function(err) {\n    if (err) {\n      throw err;\n    }\n\n    redisCache.get('foo', { compress: false }, function(err, result) {\n        console.log(result);\n        // >> 'bar'\n        redisCache.del('foo', function(err) {});\n    });\n});\n\n// Setting the compress option to true will enable a default configuration \n// for best speed using gzip. For advanced use, a configuration object may \n// also be passed with implementation-specific parameters. Currently, only \n// the built-in zlib/gzip implementation is supported.\nvar zlib = require('zlib');\nvar redisCache = cacheManager.caching({\n\tstore: redisStore,\n\thost: 'localhost', // default value\n\tport: 6379, // default value\n\tauth_pass: 'XXXXX',\n\tdb: 0,\n\tttl: 600,\n\tcompress: {\n\t  type: 'gzip',\n\t  params: {\n\t    level: zlib.Z_BEST_COMPRESSION\n\t  } \n\t}\n});\n```\nCurrently, all implementation-specific configuration parameters are passed directly to the `zlib.gzip` and `zlib.gunzip` methods. Please see the [Node Zlib documentation](https://nodejs.org/dist/latest-v6.x/docs/api/zlib.html#zlib_class_options) for available options.\n\nTests\n-----\n\n1. Run a Redis server\n2. Run tests `npm test` or `npm run coverage`\n\n\nContribution\n------------\n\nIf you would like to contribute to the project, please fork it and send us a pull request. Please add tests for any new features or bug fixes. Also make sure the code coverage is not impacted.\n\n\nLicense\n-------\n\n`node-cache-manager-redis` is licensed under the MIT license.\n","versions":{"0.1.3":{"name":"cache-manager-redis","version":"0.1.3","description":"Redis store for the node-cache-manager","main":"index.js","repository":{"type":"git","url":"https://github.com/dial-once/node-cache-manager-redis.git"},"keywords":["cache","redis","cache manager","multiple cache"],"author":{"name":"Dial Once"},"license":"MIT","dependencies":{"cache-manager":"^0.16.0","sol-redis-pool":"^0.2.0"},"devDependencies":{"grunt":"^0.4.5","grunt-contrib-jshint":"^0.10.0","jshint-stylish":"^1.0.1","load-grunt-tasks":"^2.0.0"},"gitHead":"7a138f8034ef93979c1fce87c3ee289335b9d345","bugs":{"url":"https://github.com/dial-once/node-cache-manager-redis/issues"},"homepage":"https://github.com/dial-once/node-cache-manager-redis","_id":"cache-manager-redis@0.1.3","scripts":{},"_shasum":"74451ccd21cb8d4d64ae6399ab313602a62be42f","_from":".","_npmVersion":"2.7.4","_nodeVersion":"0.10.32","_npmUser":{"name":"jkernech","email":"julien.kernech@outlook.com"},"maintainers":[{"name":"jkernech","email":"julien.kernech@outlook.com"}],"dist":{"shasum":"74451ccd21cb8d4d64ae6399ab313602a62be42f","tarball":"https://registry.npmjs.org/cache-manager-redis/-/cache-manager-redis-0.1.3.tgz","integrity":"sha512-3UEUDNsSbNOARiEJO2bVFunrbySSqrVQ76aMc8MJtlyfaT7tS/85M+Afe0I1NjHDYptSqtfFzk0uf2qwQuKAfQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCMm9OZOG50vPbcufQSd4wbow/RvMugdjE6vRMoET2e8gIgXpB7YLBWXMHDj6BlO/0F6xG9561LTfXvrBNr5zHE/4g="}]},"directories":{}},"0.1.4":{"name":"cache-manager-redis","version":"0.1.4","description":"Redis store for the node-cache-manager","main":"index.js","repository":{"type":"git","url":"https://github.com/dial-once/node-cache-manager-redis.git"},"keywords":["cache","redis","cache manager","multiple cache"],"author":{"name":"Dial Once"},"license":"MIT","dependencies":{"cache-manager":"^0.19.0","sol-redis-pool":"^0.2.0"},"devDependencies":{"grunt":"^0.4.5","grunt-contrib-jshint":"^0.10.0","jshint-stylish":"^1.0.2","load-grunt-tasks":"^2.0.0"},"gitHead":"1fd654b20b031f131a33e54a68be3dec9a3eebd7","bugs":{"url":"https://github.com/dial-once/node-cache-manager-redis/issues"},"homepage":"https://github.com/dial-once/node-cache-manager-redis","_id":"cache-manager-redis@0.1.4","scripts":{},"_shasum":"5dfc9f84ba0d72a1841366a73d60e14a3b6bf47b","_from":".","_npmVersion":"1.4.28","_npmUser":{"name":"jkernech","email":"julien.kernech@outlook.com"},"maintainers":[{"name":"jkernech","email":"julien.kernech@outlook.com"}],"dist":{"shasum":"5dfc9f84ba0d72a1841366a73d60e14a3b6bf47b","tarball":"https://registry.npmjs.org/cache-manager-redis/-/cache-manager-redis-0.1.4.tgz","integrity":"sha512-4j/w9c26hpoiMqNvtwOxwSScAZLDbLp1HX7XwdwRr4iH0cf6QBaFgcCN3sW5TP8z6JdTPDQwxxODat3dHjVBXw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCbjUyPNP3Uekt+1/8+ToC1y4Oht8sAT31FpiCAhsWpwwIgL7xlzResZrMEB5Jzz6EQZ6E53bEImgeHK++xTG8uuyE="}]},"directories":{}},"0.1.5":{"name":"cache-manager-redis","version":"0.1.5","description":"Redis store for the node-cache-manager","main":"index.js","repository":{"type":"git","url":"https://github.com/dial-once/node-cache-manager-redis.git"},"keywords":["cache","redis","cache manager","multiple cache"],"author":{"name":"Dial Once"},"license":"MIT","dependencies":{"cache-manager":"^0.19.0","sol-redis-pool":"^0.2.0"},"devDependencies":{"grunt":"^0.4.5","grunt-contrib-jshint":"^0.10.0","jshint-stylish":"^1.0.2","load-grunt-tasks":"^2.0.0"},"gitHead":"b20878543362e4981f3dae8e12e21781a7a95439","bugs":{"url":"https://github.com/dial-once/node-cache-manager-redis/issues"},"homepage":"https://github.com/dial-once/node-cache-manager-redis","_id":"cache-manager-redis@0.1.5","scripts":{},"_shasum":"c86cb2b764e5e76fe24460f4efe982d7f8971b87","_from":".","_npmVersion":"1.4.28","_npmUser":{"name":"jkernech","email":"julien.kernech@outlook.com"},"maintainers":[{"name":"jkernech","email":"julien.kernech@outlook.com"}],"dist":{"shasum":"c86cb2b764e5e76fe24460f4efe982d7f8971b87","tarball":"https://registry.npmjs.org/cache-manager-redis/-/cache-manager-redis-0.1.5.tgz","integrity":"sha512-4ztLnzkFx50hlQc8WxQ10rQhRRt/LYwGCLKITj6nAyx68f5Co2kx87S0VJ5Ak9b1tOTxZkPzuwImpzCQN6ua+g==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIQCYsplVKjs/AFAurRn7uocY//S3b2aC63gXVA5f9odMEQIfL9WQ/pYTMtHcM6OPiUJeZRAASEaNJSm/lZGRsXydTw=="}]},"directories":{}},"0.1.6":{"name":"cache-manager-redis","version":"0.1.6","description":"Redis store for the node-cache-manager","main":"index.js","repository":{"type":"git","url":"git+https://github.com/dial-once/node-cache-manager-redis.git"},"keywords":["cache","redis","cache manager","multiple cache"],"author":{"name":"Dial Once"},"license":"MIT","dependencies":{"cache-manager":"^0.19.0","sol-redis-pool":"^0.2.0"},"devDependencies":{"grunt":"^0.4.5","grunt-contrib-jshint":"^0.10.0","jshint-stylish":"^1.0.2","load-grunt-tasks":"^2.0.0"},"gitHead":"3e613fa856f1a874b963970f9f9b24a019d0ed03","bugs":{"url":"https://github.com/dial-once/node-cache-manager-redis/issues"},"homepage":"https://github.com/dial-once/node-cache-manager-redis#readme","_id":"cache-manager-redis@0.1.6","scripts":{},"_shasum":"ae2ae822c421977bea715a1a289e3627279cb0a1","_from":".","_npmVersion":"2.10.0","_nodeVersion":"0.10.35","_npmUser":{"name":"jkernech","email":"julien.kernech@outlook.com"},"maintainers":[{"name":"jkernech","email":"julien.kernech@outlook.com"}],"dist":{"shasum":"ae2ae822c421977bea715a1a289e3627279cb0a1","tarball":"https://registry.npmjs.org/cache-manager-redis/-/cache-manager-redis-0.1.6.tgz","integrity":"sha512-rzgXrB50MUqlZaDJRKS2efXXCPxZ2c8nrZTpjtmc84M1SpWyHjItGBYVMRm6IcH62jvgcW1qUU0vkErjRrZROQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIHgPta90ornBCrRozttC57F2eRLovQ7ev/Hs7o9Ozv5pAiEA9p5TWSD1HSsYqExgARkCJRoYlFkAkgGrgX1cxJENn38="}]},"directories":{}},"0.1.7":{"name":"cache-manager-redis","version":"0.1.7","description":"Redis store for the node-cache-manager","main":"index.js","repository":{"type":"git","url":"git+https://github.com/dial-once/node-cache-manager-redis.git"},"keywords":["cache","redis","cache manager","multiple cache"],"author":{"name":"Dial Once"},"license":"MIT","dependencies":{"cache-manager":"^1.0.0","sol-redis-pool":"^0.2.0"},"devDependencies":{"grunt":"^0.4.5","grunt-contrib-jshint":"^0.10.0","jshint-stylish":"^1.0.2","load-grunt-tasks":"^2.0.0"},"gitHead":"b7b0f0005cad412b86234f27a006070ecb6b68ab","bugs":{"url":"https://github.com/dial-once/node-cache-manager-redis/issues"},"homepage":"https://github.com/dial-once/node-cache-manager-redis#readme","_id":"cache-manager-redis@0.1.7","scripts":{},"_shasum":"380009afa79b834f8be4dde74791eca282d5c73c","_from":".","_npmVersion":"2.10.0","_nodeVersion":"0.10.35","_npmUser":{"name":"jkernech","email":"julien.kernech@outlook.com"},"maintainers":[{"name":"jkernech","email":"julien.kernech@outlook.com"}],"dist":{"shasum":"380009afa79b834f8be4dde74791eca282d5c73c","tarball":"https://registry.npmjs.org/cache-manager-redis/-/cache-manager-redis-0.1.7.tgz","integrity":"sha512-ZQguSglItx+mLG+4nnzplRnyd+TYK+AWva9ar02/jIciMmo/kHj4+cw4PW2rLQTzlNL7QyYBTL8odJbtrQ4CaA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCnVruj2BVGpHpTbYUbR3wvYJzojqO3yovkDAYw/RJmjQIgTiEyufGRROSgxSnbDPCJJNur2AQcMfPAcw5I9QM3E0g="}]},"directories":{}},"0.1.8":{"name":"cache-manager-redis","version":"0.1.8","description":"Redis store for the node-cache-manager","main":"index.js","repository":{"type":"git","url":"git+https://github.com/dial-once/node-cache-manager-redis.git"},"keywords":["cache","redis","cache manager","multiple cache"],"author":{"name":"Dial Once"},"license":"MIT","dependencies":{"cache-manager":"^1.0.0","sol-redis-pool":"^0.2.0"},"devDependencies":{"grunt":"^0.4.5","grunt-contrib-jshint":"^0.10.0","jshint-stylish":"^1.0.2","load-grunt-tasks":"^2.0.0"},"gitHead":"eae463f96996cceadfb2f9cd9118e1429b85b3d8","bugs":{"url":"https://github.com/dial-once/node-cache-manager-redis/issues"},"homepage":"https://github.com/dial-once/node-cache-manager-redis#readme","_id":"cache-manager-redis@0.1.8","scripts":{},"_shasum":"eabb32a25cf0f729ab4776fea7d1ebb6c68a57b8","_from":".","_npmVersion":"2.11.3","_nodeVersion":"0.10.32","_npmUser":{"name":"jkernech","email":"julien.kernech@outlook.com"},"maintainers":[{"name":"jkernech","email":"julien.kernech@outlook.com"}],"dist":{"shasum":"eabb32a25cf0f729ab4776fea7d1ebb6c68a57b8","tarball":"https://registry.npmjs.org/cache-manager-redis/-/cache-manager-redis-0.1.8.tgz","integrity":"sha512-gngsYiFtzQeO9VKpW/9KFXbQo9cAHl5O1GaS4FhqUFoO+ct6zKZKDiz56M3iCe5HZQ6WRZmqNjVQntNsnIN5qg==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQD4cjYhRPDrmBRuC74Rxba/+9jJuKpwArD5+8VVH5eQxwIgU92x+M8UWOuNTLJJmvsxnx5QKY2igCIn2k28op4lgGw="}]},"directories":{}},"0.1.9":{"name":"cache-manager-redis","version":"0.1.9","description":"Redis store for the node-cache-manager","main":"index.js","repository":{"type":"git","url":"git+https://github.com/dial-once/node-cache-manager-redis.git"},"keywords":["cache","redis","cache manager","multiple cache"],"author":{"name":"Dial Once"},"license":"MIT","dependencies":{"cache-manager":"^1.1.0","sol-redis-pool":"^0.2.1"},"devDependencies":{"grunt":"^0.4.5","grunt-contrib-jshint":"^0.10.0","jshint-stylish":"^1.0.2","load-grunt-tasks":"^2.0.0"},"gitHead":"f009a21e7fc73ec5cc55b83be37d822703a93b7e","bugs":{"url":"https://github.com/dial-once/node-cache-manager-redis/issues"},"homepage":"https://github.com/dial-once/node-cache-manager-redis#readme","_id":"cache-manager-redis@0.1.9","scripts":{},"_shasum":"43c0f767d04757615bed4475cf3e553f4f81cb17","_from":".","_npmVersion":"2.13.5","_nodeVersion":"0.10.32","_npmUser":{"name":"jkernech","email":"julien.kernech@outlook.com"},"maintainers":[{"name":"jkernech","email":"julien.kernech@outlook.com"}],"dist":{"shasum":"43c0f767d04757615bed4475cf3e553f4f81cb17","tarball":"https://registry.npmjs.org/cache-manager-redis/-/cache-manager-redis-0.1.9.tgz","integrity":"sha512-UT8jP6s2fUa9VePRSi0Jbw9/AhxQpmeT1Xih+pdJR8U08S50Lwm91kp21qPdyZQmm/g6CyuS4FCj5jMQRJmS4w==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDXgm4n+UC4nJqS5s5xPV+BTcAMEC4eHRbIdEqYimoscAIhAOTnnQsH8snv3vJUWPXRm8Ll60Uhsys2mMKA06pmRCdQ"}]},"directories":{}},"0.1.10":{"name":"cache-manager-redis","version":"0.1.10","description":"Redis store for the node-cache-manager","main":"index.js","repository":{"type":"git","url":"git+https://github.com/dial-once/node-cache-manager-redis.git"},"keywords":["cache","redis","cache manager","multiple cache"],"author":{"name":"Dial Once"},"license":"MIT","dependencies":{"cache-manager":"^1.1.0","sol-redis-pool":"^0.2.1"},"devDependencies":{"grunt":"^0.4.5","grunt-contrib-jshint":"^0.10.0","jshint-stylish":"^1.0.2","load-grunt-tasks":"^2.0.0"},"gitHead":"b7a6f04d3ec67e47de64e361475a6be2f6a8840b","bugs":{"url":"https://github.com/dial-once/node-cache-manager-redis/issues"},"homepage":"https://github.com/dial-once/node-cache-manager-redis#readme","_id":"cache-manager-redis@0.1.10","scripts":{},"_shasum":"7e738e153dbf30359e323e79e5062204a2e98cfb","_from":".","_npmVersion":"2.13.5","_nodeVersion":"0.10.32","_npmUser":{"name":"jkernech","email":"julien.kernech@outlook.com"},"maintainers":[{"name":"jkernech","email":"julien.kernech@outlook.com"}],"dist":{"shasum":"7e738e153dbf30359e323e79e5062204a2e98cfb","tarball":"https://registry.npmjs.org/cache-manager-redis/-/cache-manager-redis-0.1.10.tgz","integrity":"sha512-M02sNDC/bchIo4mm1RlnW/iuD527Vb6JnbgaZ41H9PvJ9eoV91uhGkdA6+WztZfAsNnXuHgjoFCX17QO8Tz/ig==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQD5m1Vyr5c5tJs+DhDNpzUE3an66YRO6qZQw1JntUk7vwIhAIf4PNvDmFJTY/NumpR2X0x3cQ4Bi/udwM3gqNXohh9m"}]},"directories":{}},"0.1.11":{"name":"cache-manager-redis","version":"0.1.11","description":"Redis store for the node-cache-manager","main":"index.js","repository":{"type":"git","url":"git+https://github.com/dial-once/node-cache-manager-redis.git"},"keywords":["cache","redis","cache manager","multiple cache"],"author":{"name":"Dial Once"},"license":"MIT","dependencies":{"cache-manager":"^1.2.1","sol-redis-pool":"^0.2.1"},"devDependencies":{"grunt":"^0.4.5","grunt-contrib-jshint":"^0.10.0","jshint-stylish":"^1.0.2","load-grunt-tasks":"^2.0.0"},"gitHead":"45b73f55ba2057cef7b7cc914b78ec65504fafea","bugs":{"url":"https://github.com/dial-once/node-cache-manager-redis/issues"},"homepage":"https://github.com/dial-once/node-cache-manager-redis#readme","_id":"cache-manager-redis@0.1.11","scripts":{},"_shasum":"1a3f13941e5e99d17a6d70d8f0abf72fce28d76e","_from":".","_npmVersion":"2.11.3","_nodeVersion":"0.12.7","_npmUser":{"name":"jkernech","email":"julien.kernech@outlook.com"},"dist":{"shasum":"1a3f13941e5e99d17a6d70d8f0abf72fce28d76e","tarball":"https://registry.npmjs.org/cache-manager-redis/-/cache-manager-redis-0.1.11.tgz","integrity":"sha512-D6G4M/nTijzyH6fuBlzZjgliwmpGHCdYAF3nnRZZD+To7Pu2W2dyC7gZuWWhHcnrHLovZ155Z9e/5qCGQctG7A==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQC53I8X6sPEC+m7nIdZwGrx8mZ8eRNgJ/8BhE7VhzgpCQIgRuDgPg9+6viBR/P3VRyvp/G2UN9fpnT3oUeIqau7LeI="}]},"maintainers":[{"name":"jkernech","email":"julien.kernech@outlook.com"}],"directories":{}},"0.1.12":{"name":"cache-manager-redis","version":"0.1.12","description":"Redis store for the node-cache-manager","main":"index.js","repository":{"type":"git","url":"git+https://github.com/dial-once/node-cache-manager-redis.git"},"keywords":["cache","redis","cache manager","multiple cache"],"author":{"name":"Dial Once"},"license":"MIT","dependencies":{"cache-manager":"^1.2.1","sol-redis-pool":"^0.2.1"},"devDependencies":{"grunt":"^0.4.5","grunt-contrib-jshint":"^0.10.0","jshint-stylish":"^1.0.2","load-grunt-tasks":"^2.0.0"},"gitHead":"a072e6d2ee8534ab39a6b9feafd07c67f0756273","bugs":{"url":"https://github.com/dial-once/node-cache-manager-redis/issues"},"homepage":"https://github.com/dial-once/node-cache-manager-redis#readme","_id":"cache-manager-redis@0.1.12","scripts":{},"_shasum":"d34dd3876715aa18ea9c7594e972c33f0d510100","_from":".","_npmVersion":"2.11.3","_nodeVersion":"0.12.7","_npmUser":{"name":"jkernech","email":"julien.kernech@outlook.com"},"dist":{"shasum":"d34dd3876715aa18ea9c7594e972c33f0d510100","tarball":"https://registry.npmjs.org/cache-manager-redis/-/cache-manager-redis-0.1.12.tgz","integrity":"sha512-5W7M5BAQ7JVOOS2NJdKvU5+2aLx6rWly+0gaK5ns4bZ/ceI3d/4MyrDMlHI2sqeyZU1oJI5sSt6Eng+JYhXIhQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIC2YaVxuwdPX0J3CkbPNy9BBmOKQTCe5v6YrX7YGioNDAiA+r2HEcEnvrmTCqRoJ/pij7LIXvV1ChVT907GzclOKuQ=="}]},"maintainers":[{"name":"jkernech","email":"julien.kernech@outlook.com"}],"directories":{}},"0.2.0":{"name":"cache-manager-redis","version":"0.2.0","description":"Redis store for the node-cache-manager","main":"index.js","scripts":{"test":"jshint . && ./node_modules/.bin/jasmine","coverage":"jshint . && ./node_modules/.bin/istanbul cover ./node_modules/.bin/jasmine","lint":"jshint ."},"repository":{"type":"git","url":"git+https://github.com/dial-once/node-cache-manager-redis.git"},"keywords":["cache","redis","cache manager","multiple cache"],"author":{"name":"Dial Once"},"license":"MIT","dependencies":{"cache-manager":"^1.2.2","sol-redis-pool":"^0.2.1"},"devDependencies":{"codacy-coverage":"^1.1.3","istanbul":"^0.4.0","jasmine":"^2.3.2","jshint":"^2.8.0"},"gitHead":"73a50056462c9b8fda681c1b6628230f462bbcb1","bugs":{"url":"https://github.com/dial-once/node-cache-manager-redis/issues"},"homepage":"https://github.com/dial-once/node-cache-manager-redis#readme","_id":"cache-manager-redis@0.2.0","_shasum":"8b98765c370ac6f36e55b6d0d97161da88f43504","_from":".","_npmVersion":"2.11.3","_nodeVersion":"0.12.7","_npmUser":{"name":"jkernech","email":"julien.kernech@outlook.com"},"dist":{"shasum":"8b98765c370ac6f36e55b6d0d97161da88f43504","tarball":"https://registry.npmjs.org/cache-manager-redis/-/cache-manager-redis-0.2.0.tgz","integrity":"sha512-POEJKW3ms96AIu584uMaAJ5NvCx8HhfD0RAHejnhKJfhd3qaruUdqVR0y2gDAxmXu8cHZD/cr6/p1YMnMB6GyA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDtlAFsaL/D8bUbBTh/sUae7QLXzFxdYNSpqm1i+ZiFZQIgCnBMwoY5AVXqQpzxbbHiNfYoHW3gSS7KKZNptZ4f9P0="}]},"maintainers":[{"name":"jkernech","email":"julien.kernech@outlook.com"}],"directories":{}},"0.2.1":{"name":"cache-manager-redis","version":"0.2.1","description":"Redis store for the node-cache-manager","main":"index.js","scripts":{"test":"jshint . && ./node_modules/.bin/jasmine","coverage":"jshint . && ./node_modules/.bin/istanbul cover ./node_modules/.bin/jasmine","lint":"jshint ."},"repository":{"type":"git","url":"git+https://github.com/dial-once/node-cache-manager-redis.git"},"keywords":["cache","redis","cache manager","multiple cache"],"author":{"name":"Dial Once"},"license":"MIT","dependencies":{"cache-manager":"^1.2.2","sol-redis-pool":"^0.2.1"},"devDependencies":{"codacy-coverage":"^1.1.3","istanbul":"^0.4.0","jasmine":"^2.3.2","jshint":"^2.8.0","sinon":"^1.17.2"},"gitHead":"f6ce92ea11d049cef06f6adc13e000ac170f6b17","bugs":{"url":"https://github.com/dial-once/node-cache-manager-redis/issues"},"homepage":"https://github.com/dial-once/node-cache-manager-redis#readme","_id":"cache-manager-redis@0.2.1","_shasum":"bb9af5bf1f15183f3f2d71ff3d58f61a92d7412f","_from":".","_npmVersion":"2.11.3","_nodeVersion":"0.12.7","_npmUser":{"name":"jkernech","email":"julien.kernech@outlook.com"},"dist":{"shasum":"bb9af5bf1f15183f3f2d71ff3d58f61a92d7412f","tarball":"https://registry.npmjs.org/cache-manager-redis/-/cache-manager-redis-0.2.1.tgz","integrity":"sha512-sXcTM+jnTcBF3c2cI4jt7yPegzIYHdKKhYiNQw5nFhfIIIrRUsED2eDgLT6iXZZHelubucxRfYIhHKa1LQzfPw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDnqEHnTCK64gOTQaZ/NM/QdAPWOkNpDI8yfT4jW8cozgIgKQZuHn/A6lJuvLzd3C2qfNtA6NA8OhNYgZvj7M82g2s="}]},"maintainers":[{"name":"jkernech","email":"julien.kernech@outlook.com"}],"directories":{}},"0.2.2":{"name":"cache-manager-redis","version":"0.2.2","description":"Redis store for the node-cache-manager","main":"index.js","scripts":{"test":"jasmine","coverage":"istanbul cover node_modules/.bin/jasmine","lint":"jshint .","jsdoc":"jsdoc . --package package.json --readme README.md --template node_modules/minami --destination docs"},"repository":{"type":"git","url":"git+https://github.com/dial-once/node-cache-manager-redis.git"},"keywords":["cache","redis","cache manager","multiple cache"],"author":{"name":"Dial Once"},"license":"MIT","dependencies":{"cache-manager":"^1.2.2","sol-redis-pool":"^0.2.1"},"devDependencies":{"codacy-coverage":"^1.1.3","istanbul":"^0.4.0","jasmine":"^2.3.2","jsdoc":"^3.3.3","jshint":"^2.8.0","minami":"^1.1.1","sinon":"^1.17.2"},"gitHead":"e958989d622118e9adbaac3afc7b31a3cd24626c","bugs":{"url":"https://github.com/dial-once/node-cache-manager-redis/issues"},"homepage":"https://github.com/dial-once/node-cache-manager-redis#readme","_id":"cache-manager-redis@0.2.2","_shasum":"f238aad3d4da8fa0e579b4c2b82534f7494cf9b3","_from":".","_npmVersion":"2.11.3","_nodeVersion":"0.12.7","_npmUser":{"name":"jkernech","email":"julien.kernech@outlook.com"},"dist":{"shasum":"f238aad3d4da8fa0e579b4c2b82534f7494cf9b3","tarball":"https://registry.npmjs.org/cache-manager-redis/-/cache-manager-redis-0.2.2.tgz","integrity":"sha512-ZCgYfSHYc+qXMQ0GxH+DqswxdWqTV/9LMkVPAJfuELq/NbHKJ/CzO7O7JvfkbVkSBdDufwVDbLZerTMnjLdQqA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCLKXdgtSUugjGMYhfifTdGZHUtMs7WwHuZHzmzULtlnAIhAOLT0YUFv4eyDbp5DC7+4OB/I7tYbIY2HCFAGtW/HCnE"}]},"maintainers":[{"name":"jkernech","email":"julien.kernech@outlook.com"}],"directories":{}},"0.2.3":{"name":"cache-manager-redis","version":"0.2.3","description":"Redis store for the node-cache-manager","main":"index.js","scripts":{"test":"jasmine","coverage":"istanbul cover node_modules/.bin/jasmine","lint":"jshint .","jsdoc":"jsdoc . --package package.json --readme README.md --template node_modules/minami --destination docs"},"repository":{"type":"git","url":"git+https://github.com/dial-once/node-cache-manager-redis.git"},"keywords":["cache","redis","cache manager","multiple cache"],"author":{"name":"Dial Once"},"license":"MIT","dependencies":{"cache-manager":"^1.2.2","redis-url":"^1.2.1","sol-redis-pool":"^0.2.1"},"devDependencies":{"codacy-coverage":"^1.1.3","istanbul":"^0.4.0","jasmine":"^2.3.2","jsdoc":"^3.3.3","jshint":"^2.8.0","minami":"^1.1.1","sinon":"^1.17.2"},"gitHead":"20c91ace6ec80cc1f46f4f55d6889c5b237e5061","bugs":{"url":"https://github.com/dial-once/node-cache-manager-redis/issues"},"homepage":"https://github.com/dial-once/node-cache-manager-redis#readme","_id":"cache-manager-redis@0.2.3","_shasum":"f4bfc279f54bdcb8310e528d5543200114532c86","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.1","_npmUser":{"name":"jkernech","email":"julien.kernech@outlook.com"},"dist":{"shasum":"f4bfc279f54bdcb8310e528d5543200114532c86","tarball":"https://registry.npmjs.org/cache-manager-redis/-/cache-manager-redis-0.2.3.tgz","integrity":"sha512-9f9yelZcXtbwgffK5p6+ESztxwgtA0V6mYATvIwntBEcnCnz4I28szc/hyUIqMRRnKQIP/Hwwi8vfk8/lKLJaQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIGrJ6vaseQJCFrm2gpYrHuebfQbrQQc/yKlrddvykjaUAiEAqN8abTRoWxbywSYJGlKi6U9ckneBXfhgVTIve1zpTJ8="}]},"maintainers":[{"name":"jkernech","email":"julien.kernech@outlook.com"}],"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/cache-manager-redis-0.2.3.tgz_1470907619954_0.5902227843180299"},"directories":{}},"0.2.4":{"name":"cache-manager-redis","version":"0.2.4","description":"Redis store for the node-cache-manager","main":"index.js","scripts":{"test":"mocha --recursive test","coverage":"istanbul cover _mocha -- test --recursive","lint":"jshint .","jsdoc":"jsdoc . --package package.json --readme README.md --template node_modules/minami --destination docs"},"repository":{"type":"git","url":"git+https://github.com/dial-once/node-cache-manager-redis.git"},"keywords":["cache","redis","cache manager","multiple cache"],"author":{"name":"Dial Once"},"license":"MIT","dependencies":{"cache-manager":"^1.2.2","redis-url":"^1.2.1","sol-redis-pool":"^0.3.1"},"devDependencies":{"istanbul":"^0.4.0","jsdoc":"^3.3.3","jshint":"^2.8.0","minami":"^1.1.1","mocha":"^3.0.2","sinon":"^1.17.2"},"gitHead":"8f18b340b0e9aa2fed0fdc2ef790d2d3fb0c42f3","bugs":{"url":"https://github.com/dial-once/node-cache-manager-redis/issues"},"homepage":"https://github.com/dial-once/node-cache-manager-redis#readme","_id":"cache-manager-redis@0.2.4","_shasum":"6a396ce4bf465e8c42dbcd62a7ebd5a67e178bd0","_from":".","_npmVersion":"3.6.0","_nodeVersion":"5.6.0","_npmUser":{"name":"mrister","email":"mihovil.rister@gmail.com"},"dist":{"shasum":"6a396ce4bf465e8c42dbcd62a7ebd5a67e178bd0","tarball":"https://registry.npmjs.org/cache-manager-redis/-/cache-manager-redis-0.2.4.tgz","integrity":"sha512-JQwpvAEE/XKPj/SlASyRVMfPtiAxA4OCqeoyWwRnGJlgoT1LIrgAzq3+ucyHNGp51Y4lN0iuRWlDjrtdTSimdg==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIDFMN+EEyxxmT5MRhUidibWp3OL9rOTHW20uijonmu/YAiEAqyK8OKvTNu3rlUZSc6Pl3P7I5zcfotJwsSQTL0vq4a8="}]},"maintainers":[{"name":"jkernech","email":"julien.kernech@outlook.com"},{"name":"mrister","email":"mihovil.rister@gmail.com"},{"name":"pukoren","email":"github.koren@pukogames.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/cache-manager-redis-0.2.4.tgz_1473350441484_0.3710426229517907"},"directories":{}},"0.2.5":{"name":"cache-manager-redis","version":"0.2.5","description":"Redis store for the node-cache-manager","main":"index.js","scripts":{"test":"mocha --recursive test","coverage":"istanbul cover _mocha -- test --recursive","lint":"jshint .","jsdoc":"jsdoc . --package package.json --readme README.md --template node_modules/minami --destination docs"},"repository":{"type":"git","url":"git+https://github.com/dial-once/node-cache-manager-redis.git"},"keywords":["cache","redis","cache manager","multiple cache"],"author":{"name":"Dial Once"},"license":"MIT","dependencies":{"cache-manager":"^1.2.2","redis-url":"^1.2.1","sol-redis-pool":"^0.3.1"},"devDependencies":{"istanbul":"^0.4.0","jsdoc":"^3.3.3","jshint":"^2.8.0","minami":"^1.1.1","mocha":"^3.0.2","sinon":"^1.17.2"},"gitHead":"5c7af1004ded443eb58ccab0b6c43b20ed07f5d6","bugs":{"url":"https://github.com/dial-once/node-cache-manager-redis/issues"},"homepage":"https://github.com/dial-once/node-cache-manager-redis#readme","_id":"cache-manager-redis@0.2.5","_shasum":"f368842af566687ace293c5b496f83273d165098","_from":".","_npmVersion":"3.10.8","_nodeVersion":"6.2.1","_npmUser":{"name":"pukoren","email":"github.koren@pukogames.com"},"dist":{"shasum":"f368842af566687ace293c5b496f83273d165098","tarball":"https://registry.npmjs.org/cache-manager-redis/-/cache-manager-redis-0.2.5.tgz","integrity":"sha512-d4W/wQJusBF7o3Hf+sTgJtWWuiWsAZQeBE/QvTOq11H4BDKXDiT8aGrci00w0SRVjVdbPzIrwM90ZIDqc8n7vw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQD+XMijqM4RoDJYr47yNgVlD7zvlDJ2Oix/dXF7fxKa4gIhAMwARu+2vL/abe0ZMXEh4qm1pge5avzR5O5FvmzG8l9G"}]},"maintainers":[{"name":"jkernech","email":"julien.kernech@outlook.com"},{"name":"mrister","email":"mihovil.rister@gmail.com"},{"name":"pukoren","email":"github.koren@pukogames.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/cache-manager-redis-0.2.5.tgz_1478517189988_0.3039043424651027"},"directories":{}},"0.2.6":{"name":"cache-manager-redis","version":"0.2.6","description":"Redis store for the node-cache-manager","main":"index.js","scripts":{"test":"mocha --recursive test","coverage":"istanbul cover _mocha -- test --recursive","lint":"jshint .","jsdoc":"jsdoc . --package package.json --readme README.md --template node_modules/minami --destination docs"},"repository":{"type":"git","url":"git+https://github.com/dial-once/node-cache-manager-redis.git"},"keywords":["cache","redis","cache manager","multiple cache"],"author":{"name":"Dial Once"},"license":"MIT","dependencies":{"cache-manager":"^1.2.2","redis-url":"^1.2.1","sol-redis-pool":"^0.3.1"},"devDependencies":{"istanbul":"^0.4.0","jsdoc":"^3.3.3","jshint":"^2.8.0","minami":"^1.1.1","mocha":"^3.0.2","sinon":"^1.17.2"},"gitHead":"b7e99e93762b5cfd1d323ec4a23c629dc06f662f","bugs":{"url":"https://github.com/dial-once/node-cache-manager-redis/issues"},"homepage":"https://github.com/dial-once/node-cache-manager-redis#readme","_id":"cache-manager-redis@0.2.6","_shasum":"8eb868b822e611206a87afb966848bd048f7ee72","_from":".","_npmVersion":"3.10.8","_nodeVersion":"6.2.1","_npmUser":{"name":"pukoren","email":"github.koren@pukogames.com"},"dist":{"shasum":"8eb868b822e611206a87afb966848bd048f7ee72","tarball":"https://registry.npmjs.org/cache-manager-redis/-/cache-manager-redis-0.2.6.tgz","integrity":"sha512-K4nGv0OFrSOUeuWutpa7nUQeiWxhyyk+SPfftgQ5E7zr/Q3QMaCvnxhAT0+gCdEqZBl0Kxii9bhDToUBd7I4Aw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDON+K8EmXaDewc0+rcSAEDYhvjAi+wtcytQ+MDOqs0mAIhAP4bUHYvBRkqkt5PwRuH3LtpqzCY9RcS0aVJ4dL7LcHC"}]},"maintainers":[{"name":"jkernech","email":"julien.kernech@outlook.com"},{"name":"mrister","email":"mihovil.rister@gmail.com"},{"name":"pukoren","email":"github.koren@pukogames.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/cache-manager-redis-0.2.6.tgz_1478796365758_0.31579893990419805"},"directories":{}},"0.3.0":{"name":"cache-manager-redis","version":"0.3.0","description":"Redis store for the node-cache-manager","main":"index.js","scripts":{"test":"mocha --recursive test","coverage":"istanbul cover _mocha -- test --recursive","lint":"jshint .","jsdoc":"jsdoc . --package package.json --readme README.md --template node_modules/minami --destination docs"},"repository":{"type":"git","url":"git+https://github.com/dial-once/node-cache-manager-redis.git"},"keywords":["cache","redis","cache manager","multiple cache"],"author":{"name":"Dial Once"},"license":"MIT","dependencies":{"cache-manager":"^1.2.2","redis-url":"^1.2.1","sol-redis-pool":"^0.3.1"},"devDependencies":{"istanbul":"^0.4.0","jsdoc":"^3.3.3","jshint":"^2.8.0","minami":"^1.1.1","mocha":"^3.0.2","sinon":"^1.17.2"},"gitHead":"205bfc9a7210ac9aae91ecd7f7b8c1f684f55a60","bugs":{"url":"https://github.com/dial-once/node-cache-manager-redis/issues"},"homepage":"https://github.com/dial-once/node-cache-manager-redis#readme","_id":"cache-manager-redis@0.3.0","_shasum":"a16ed2c9e439106307d95d341b45bc171afad863","_from":".","_npmVersion":"3.10.8","_nodeVersion":"6.2.1","_npmUser":{"name":"pukoren","email":"github.koren@pukogames.com"},"dist":{"shasum":"a16ed2c9e439106307d95d341b45bc171afad863","tarball":"https://registry.npmjs.org/cache-manager-redis/-/cache-manager-redis-0.3.0.tgz","integrity":"sha512-UvR/a0Fp4m0JNal4mkAeTXpxXXa658WrP5IrD2uYu9/6r5mFApEOl+EGikZa331qGB1wx0wke6IMTHvfHKfy5g==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQC8rJCQegfmDBr5CbnTst9rJ2nmYHmgK/PMYz0BaVUtUAIgHv73IuMi8Vs7b0ueBEk+WLQcG14iVsN6lakLQXv6rhM="}]},"maintainers":[{"name":"jkernech","email":"julien.kernech@outlook.com"},{"name":"mrister","email":"mihovil.rister@gmail.com"},{"name":"pukoren","email":"github.koren@pukogames.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/cache-manager-redis-0.3.0.tgz_1478796452831_0.4082889526616782"},"directories":{}},"0.3.1":{"name":"cache-manager-redis","version":"0.3.1","description":"Redis store for the node-cache-manager","main":"index.js","scripts":{"test":"mocha --recursive test","coverage":"istanbul cover _mocha -- test --recursive","lint":"jshint .","jsdoc":"jsdoc . --package package.json --readme README.md --template node_modules/minami --destination docs"},"repository":{"type":"git","url":"git+https://github.com/dial-once/node-cache-manager-redis.git"},"keywords":["cache","redis","cache manager","multiple cache"],"author":{"name":"Dial Once"},"license":"MIT","dependencies":{"cache-manager":"^1.2.2","redis-url":"^1.2.1","sol-redis-pool":"^0.3.1"},"devDependencies":{"istanbul":"^0.4.0","jsdoc":"^3.3.3","jshint":"^2.8.0","minami":"^1.1.1","mocha":"^3.0.2","sinon":"^1.17.2"},"gitHead":"1369787c4f9417f4a25936b148836e968a6016d0","bugs":{"url":"https://github.com/dial-once/node-cache-manager-redis/issues"},"homepage":"https://github.com/dial-once/node-cache-manager-redis#readme","_id":"cache-manager-redis@0.3.1","_shasum":"48b02452508a8a6fed638e040a20aca3ffdc17b5","_from":".","_npmVersion":"3.10.8","_nodeVersion":"6.2.1","_npmUser":{"name":"pukoren","email":"github.koren@pukogames.com"},"dist":{"shasum":"48b02452508a8a6fed638e040a20aca3ffdc17b5","tarball":"https://registry.npmjs.org/cache-manager-redis/-/cache-manager-redis-0.3.1.tgz","integrity":"sha512-vgRAtNtgtwOkNIQ3Y5zDDtJ3MPobA2EdEUmoocu9FY2vtP/CO6+7NqBPvEwdueo3yomR7okoeg/ao/R+Km5ZWg==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCsHInS1WqqWc5DSJYwgHVzGuRMt5YTn28BsKlrmkZ56QIgHQ9wtQG2RZ1VMynxfRA2nOwM8atdDqQVoLSPgVRyFAM="}]},"maintainers":[{"name":"jkernech","email":"julien.kernech@outlook.com"},{"name":"mrister","email":"mihovil.rister@gmail.com"},{"name":"pukoren","email":"github.koren@pukogames.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/cache-manager-redis-0.3.1.tgz_1479113671490_0.3145803976804018"},"directories":{}},"0.3.2":{"name":"cache-manager-redis","version":"0.3.2","description":"Redis store for the node-cache-manager","main":"index.js","scripts":{"test":"mocha --recursive test","coverage":"istanbul cover _mocha -- test --recursive","lint":"jshint .","jsdoc":"jsdoc . --package package.json --readme README.md --template node_modules/minami --destination docs"},"repository":{"type":"git","url":"git+https://github.com/dial-once/node-cache-manager-redis.git"},"keywords":["cache","redis","cache manager","multiple cache"],"author":{"name":"Dial Once"},"license":"MIT","dependencies":{"cache-manager":"^2.2.0","redis-url":"^1.2.1","sol-redis-pool":"^0.3.2"},"devDependencies":{"istanbul":"^0.4.0","jsdoc":"^3.3.3","jshint":"^2.8.0","minami":"^1.1.1","mocha":"^3.0.2","sinon":"^1.17.2"},"gitHead":"a2e938d3ebc7161bea09d1df5008373cfb6eb875","bugs":{"url":"https://github.com/dial-once/node-cache-manager-redis/issues"},"homepage":"https://github.com/dial-once/node-cache-manager-redis#readme","_id":"cache-manager-redis@0.3.2","_shasum":"d688a7beac68f2329d27f4b6a3260b4a58df8ae9","_from":".","_npmVersion":"3.10.8","_nodeVersion":"6.2.1","_npmUser":{"name":"pukoren","email":"github.koren@pukogames.com"},"dist":{"shasum":"d688a7beac68f2329d27f4b6a3260b4a58df8ae9","tarball":"https://registry.npmjs.org/cache-manager-redis/-/cache-manager-redis-0.3.2.tgz","integrity":"sha512-RmcalszN7cq4kKZUqHecHxydIVs8LATw3hZhJ3nEqwkeqd3tD5vgBSmibBt020HnZ4QHOySIZng5vpXIUcdk2A==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIANm1OqaJlEFpSl1rJBD/0Hb3it3sh4iBR/YmF3zIn7CAiB9tsgp+YGk1Nn9zUkj50USk7St/QVdjWnorlo+Xc2a7Q=="}]},"maintainers":[{"name":"jkernech","email":"julien.kernech@outlook.com"},{"name":"mrister","email":"mihovil.rister@gmail.com"},{"name":"pukoren","email":"github.koren@pukogames.com"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/cache-manager-redis-0.3.2.tgz_1479200573492_0.9239391903392971"},"directories":{}},"0.4.0":{"name":"cache-manager-redis","version":"0.4.0","description":"Redis store for the node-cache-manager","main":"index.js","scripts":{"test":"mocha --recursive test","coverage":"istanbul cover _mocha -- test --recursive","lint":"jshint .","jsdoc":"jsdoc . --package package.json --readme README.md --template node_modules/minami --destination docs"},"repository":{"type":"git","url":"git+https://github.com/dial-once/node-cache-manager-redis.git"},"keywords":["cache","redis","cache manager","multiple cache"],"author":{"name":"Dial Once"},"license":"MIT","dependencies":{"cache-manager":"^2.2.0","redis-url":"^1.2.1","sol-redis-pool":"^0.3.2"},"devDependencies":{"istanbul":"^0.4.0","jsdoc":"^3.3.3","jshint":"^2.8.0","minami":"^1.1.1","mocha":"^3.0.2","sinon":"^1.17.2"},"gitHead":"b669058213ab33cd9ab649c83e4e686b7d8f0fdf","bugs":{"url":"https://github.com/dial-once/node-cache-manager-redis/issues"},"homepage":"https://github.com/dial-once/node-cache-manager-redis#readme","_id":"cache-manager-redis@0.4.0","_shasum":"ed39864c786341517cca38d67f615c725b9282ca","_from":".","_npmVersion":"4.0.2","_nodeVersion":"7.0.0","_npmUser":{"name":"mrister","email":"mihovil.rister@gmail.com"},"dist":{"shasum":"ed39864c786341517cca38d67f615c725b9282ca","tarball":"https://registry.npmjs.org/cache-manager-redis/-/cache-manager-redis-0.4.0.tgz","integrity":"sha512-zRcHUrgq4CPZdpS9M7lQd8OhBtMmjOVtkj2NgVtu2MBqly32LxQ1tkV1C6bhd3tj8LHYuh1sNYLbMlWxXFQ6NA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCICyQS0TMn5j68/YAqHpy3q5r+EA6ya7XtAnLT8KuFlrxAiEA8aD1ChUL0qCkYT/4QK5LMW877TnZEtU6U5vos7Ehz9s="}]},"maintainers":[{"name":"jkernech","email":"julien.kernech@outlook.com"},{"name":"mrister","email":"mihovil.rister@gmail.com"},{"name":"pukoren","email":"github.koren@pukogames.com"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/cache-manager-redis-0.4.0.tgz_1483375832252_0.8716880972497165"},"directories":{}},"0.5.0":{"name":"cache-manager-redis","version":"0.5.0","description":"Redis store for the node-cache-manager","main":"index.js","scripts":{"test":"mocha --recursive test","coverage":"istanbul cover _mocha -- test --recursive","lint":"jshint .","jsdoc":"jsdoc . --package package.json --readme README.md --template node_modules/minami --destination docs"},"repository":{"type":"git","url":"git+https://github.com/dial-once/node-cache-manager-redis.git"},"keywords":["cache","redis","cache manager","multiple cache"],"author":{"name":"Dial Once"},"license":"MIT","dependencies":{"cache-manager":"^2.2.0","redis-url":"^1.2.1","sol-redis-pool":"^0.3.2"},"devDependencies":{"istanbul":"^0.4.0","jsdoc":"^3.3.3","jshint":"^2.8.0","minami":"^1.1.1","mocha":"^3.0.2","sinon":"^1.17.2"},"gitHead":"2ec35976ff847dea9ce46963223554e08f0e4262","bugs":{"url":"https://github.com/dial-once/node-cache-manager-redis/issues"},"homepage":"https://github.com/dial-once/node-cache-manager-redis#readme","_id":"cache-manager-redis@0.5.0","_npmVersion":"5.4.0","_nodeVersion":"8.4.0","_npmUser":{"name":"jkernech","email":"julien.kernech@outlook.com"},"dist":{"integrity":"sha512-Zav3XnlZG9WnSLgJMiEpGpUUcvrIKthcwH95JoBDHioAjPxc83AOgCyVMb4jF3+xbLa6fM7t1G05W8S/ZLrlPQ==","shasum":"9a902655e8a710da93563efd4ceda01f1e60758d","tarball":"https://registry.npmjs.org/cache-manager-redis/-/cache-manager-redis-0.5.0.tgz","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQC19uPMjNa+nTijAlOgHspVbVpGD97iCvATsnzAXTffWwIhAM6+qI9Lde/hLaZEGFzSrppFkWbNzvqahWanBX4LMlMp"}]},"maintainers":[{"email":"npm@dial-once.com","name":"dial-once"},{"email":"khatal.yacine@gmail.com","name":"ky23"},{"email":"mihovil.rister@gmail.com","name":"mrister"},{"email":"julien.kernech@outlook.com","name":"jkernech"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/cache-manager-redis-0.5.0.tgz_1504647278472_0.9840808934532106"},"directories":{}},"0.6.0":{"name":"cache-manager-redis","version":"0.6.0","description":"Redis store for the node-cache-manager","main":"index.js","scripts":{"test":"mocha --recursive test","coverage":"istanbul cover _mocha -- test --recursive","lint":"jshint .","jsdoc":"jsdoc . --package package.json --readme README.md --template node_modules/minami --destination docs"},"repository":{"type":"git","url":"git+https://github.com/dial-once/node-cache-manager-redis.git"},"keywords":["cache","redis","cache manager","multiple cache"],"author":{"name":"Dial Once"},"license":"MIT","dependencies":{"cache-manager":"^2.2.0","redis-url":"^1.2.1","sol-redis-pool":"^0.3.2"},"devDependencies":{"istanbul":"^0.4.0","jsdoc":"^3.3.3","jshint":"^2.8.0","minami":"^1.1.1","mocha":"^3.0.2","sinon":"^1.17.2"},"gitHead":"46d334121591276c68257dc5e859c143313c7582","bugs":{"url":"https://github.com/dial-once/node-cache-manager-redis/issues"},"homepage":"https://github.com/dial-once/node-cache-manager-redis#readme","_id":"cache-manager-redis@0.6.0","_npmVersion":"5.6.0","_nodeVersion":"9.11.1","_npmUser":{"name":"jkernech","email":"julien.kernech@outlook.com"},"dist":{"integrity":"sha512-i7grsVyuIppLyzKAAHM48Eo2YX51+D++Pp1MQiX/9GCBVr3ofayiBpLrz/k/IUpaU9HUZ56P+v5Ee7yJRkfk/w==","shasum":"b364b8e855b287edae1b07780addb9bc9860ebce","tarball":"https://registry.npmjs.org/cache-manager-redis/-/cache-manager-redis-0.6.0.tgz","fileCount":10,"unpackedSize":74465,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJa2dzMCRA9TVsSAnZWagAAgc0P/0B0mNM2R28QHCDUXfTU\nB++v2dGnA7jRydfoOD3TyawExT6BV44Uouwn2EFQesY+ffkRdeniKrBC63ki\n92CXjilfzm5P/TK5q5aVQVtSWhXmGoafmLdRatpwJZQ1/3F8BslIDb+Ee60q\nzgtotkOzvY7DSG4UMMYug8tLDbZsaM/8YQdzK9D7IE1ysC4u8AGHZIm7oOQm\nSx4hQdou6EYVvjZ13hNfIqVl/R5RtJlK6mwq6zdwGsFlmLzIORz/+Cs9D3Ey\ndftL4Cui1Bjux6pj+ppiQbw9de+QGQs3NeevavMO2zylEIivpQZO3h1BKCzx\nZ6tjJqstcjI+a4rg/7RL60M7QIHrl3DrZhAj2EOAr57j74ZRatPnduQgBp52\n4y4aR4amgPeJt/giYD94BcbkNE8byGNeg5b34u1e191wyE6RSYhR5Jb5Shht\n8xt4XVt53CEEgGwHY9C1G84Phx3kPw2obJK9Oc9IyutbUhzNFj/SEBqoJABA\n1TrLA7NuzpXeIRBiMJ9yBR4ebtoAkQrYxnCdoP4aIgZmy1qvyRpjyU3F4CH+\njImMejFBosPHppT5SSdCnNNKvwYZ5/jU+LmNLKmK1+wbsx32mbwXuoEv92by\nqOql1h34QN0hMrbfsAPgNGrXGK99MlNVEod+X+Wdq23oeocVuu0NCoYwU7mi\nc8Ki\r\n=ysBD\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDhXK+GQ5ZMJFFRq4d4YzZ61huQJUB/IYNNsvGkRsb3yAIgaB1zRtIvQwXoo9cGmQ4rZDluH7TGDYS2jRNO61R6ZSg="}]},"maintainers":[{"email":"npm@dial-once.com","name":"dial-once"},{"email":"julien.kernech@outlook.com","name":"jkernech"},{"email":"khatal.yacine@gmail.com","name":"ky23"},{"email":"mihovil.rister@gmail.com","name":"mrister"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/cache-manager-redis_0.6.0_1524227275934_0.7495810968245895"},"_hasShrinkwrap":false}},"homepage":"https://github.com/dial-once/node-cache-manager-redis#readme","keywords":["cache","redis","cache manager","multiple cache"],"repository":{"type":"git","url":"git+https://github.com/dial-once/node-cache-manager-redis.git"},"author":{"name":"Dial Once"},"bugs":{"url":"https://github.com/dial-once/node-cache-manager-redis/issues"},"license":"MIT","readmeFilename":"README.md","users":{"pukoren":true,"jkernech":true,"dialonce":true,"jeltok":true,"usex":true}}