Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

redis-connection-pool

Package Overview
Dependencies
Maintainers
1
Versions
33
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

redis-connection-pool - npm Package Compare versions

Comparing version 1.0.0 to 1.0.1

2

package.json
{
"name": "redis-connection-pool",
"version": "1.0.0",
"version": "1.0.1",
"description": "a redis client connection pool",

@@ -5,0 +5,0 @@ "license": "MIT",

@@ -96,3 +96,3 @@ /**

setTimeout(function poolStats() {
setTimeout(function poolStats(pool) {
// periodically report pool statistics

@@ -102,4 +102,4 @@ debug('REDIS POOL: [size: ' + pool.getPoolSize() +

' waiting:' + pool.waitingClientsCount() + ']');
setTimeout(poolStats, 300000);
}, 300000);
setTimeout(poolStats, 300000, pool);
}, 300000, this.pool);

@@ -309,3 +309,3 @@ return this;

RedisConnectionPool.prototype.clean = function (key, cb) {
debug('`clearing redis key ' + key);
debug('clearing redis key ' + key);
var client = redis.createClient();

@@ -318,3 +318,3 @@ var self = this;

keys.forEach(function (name, pos) {
debug('redis-connection-pool: deleting name ' + name);
debug('deleting name ' + name);
self.del(name);

@@ -321,0 +321,0 @@ });

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc