Socket
Socket
Sign inDemoInstall

rate-limiter-flexible

Package Overview
Dependencies
0
Maintainers
1
Versions
163
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 0.12.2 to 0.12.3

34

BLOCK_STRATEGY.md

@@ -75,12 +75,12 @@ ## Block Strategy

Statistics Avg Stdev Max
Reqs/sec 2006.80 745.77 18495.21
Latency 25.99ms 167.75ms 5.10s
Reqs/sec 1999.05 562.96 11243.01
Latency 7.29ms 8.71ms 146.95ms
Latency Distribution
50% 6.55ms
75% 10.62ms
90% 29.05ms
95% 66.24ms
99% 195.91ms
50% 5.25ms
75% 7.20ms
90% 11.61ms
95% 18.73ms
99% 52.78ms
HTTP codes:
1xx - 0, 2xx - 750, 3xx - 0, 4xx - 58675, 5xx - 0
1xx - 0, 2xx - 750, 3xx - 0, 4xx - 59261, 5xx - 0
```

@@ -109,12 +109,12 @@

Statistics Avg Stdev Max
Reqs/sec 2000.48 770.61 11560.37
Latency 8.46ms 15.40ms 321.88ms
Reqs/sec 2002.56 773.42 11058.44
Latency 5.19ms 10.30ms 149.12ms
Latency Distribution
50% 4.39ms
75% 6.73ms
90% 14.62ms
95% 31.82ms
99% 86.29ms
50% 2.99ms
75% 4.08ms
90% 5.86ms
95% 14.35ms
99% 60.55ms
HTTP codes:
1xx - 0, 2xx - 25, 3xx - 0, 4xx - 59898, 5xx - 0
1xx - 0, 2xx - 25, 3xx - 0, 4xx - 59920, 5xx - 0
```

@@ -125,2 +125,2 @@

* Latency is smaller with Block Strategy
* Number of requests to Redis less on 59k roughly
* Number of requests to Redis less on 59k roughly

@@ -16,3 +16,2 @@ const RateLimiterStoreAbstract = require('./RateLimiterStoreAbstract');

upsert: true,
returnNewDocument: true,
} // eslint-disable-line comma-dangle

@@ -33,3 +32,2 @@ );

upsert: true,
returnNewDocument: true,
} // eslint-disable-line comma-dangle

@@ -80,3 +78,3 @@ );

res.isFirstInDuration = result.value === null;
res.consumedPoints = res.isFirstInDuration ? changedPoints : result.value.points;
res.consumedPoints = res.isFirstInDuration ? changedPoints : result.value.points + changedPoints;

@@ -146,6 +144,6 @@ res.remainingPoints = Math.max(this.points - res.consumedPoints, 0);

.then((res) => {
resolve(this._getRateLimiterRes(rlKey, points, res));
resolve(this._getRateLimiterRes(rlKey, -points, res));
})
.catch((err) => {
this._handleError(err, 'reward', resolve, reject, key, points);
this._handleError(err, 'reward', resolve, reject, key, -points);
});

@@ -152,0 +150,0 @@ });

{
"name": "rate-limiter-flexible",
"version": "0.12.2",
"version": "0.12.3",
"description": "Flexible API rate limiter backed by Redis for distributed node.js applications",

@@ -5,0 +5,0 @@ "main": "index.js",

Sorry, the diff of this file is not supported yet

SocketSocket SOC 2 Logo

Product

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

Packages

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc