-
Notifications
You must be signed in to change notification settings - Fork 31
/
Copy pathrate-limiting.js
executable file
·65 lines (52 loc) · 1.45 KB
/
rate-limiting.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
#!/usr/bin/env node
const { RateLimit } = require('async-sema');
async function f() {
console.log('Naive requests per second rate limiting');
const n = 50;
const lim = RateLimit(5);
const start = process.hrtime();
for (let i = 0; i < n; i++) {
await lim();
process.stdout.write('.');
}
process.stdout.write('\n');
const hrt = process.hrtime(start);
const elapsed = (hrt[0] * 1000 + hrt[1] / 1e6) / 1000;
const rps = n / elapsed;
console.log(rps.toFixed(3) + ' req/s');
}
async function g() {
console.log('Custom rate limit time unit');
const n = 20;
const lim = RateLimit(5, { timeUnit: 60 * 1000 });
const start = process.hrtime();
for (let i = 0; i < n; i++) {
await lim();
process.stdout.write('.');
}
process.stdout.write('\n');
const hrt = process.hrtime(start);
const elapsed = (hrt[0] * 1000 + hrt[1] / 1e6) / 1000;
const rps = n / (elapsed / 60);
console.log(rps.toFixed(3) + ' req/min');
}
async function h() {
console.log('Uniform distribution of requests over time');
const n = 50;
const lim = RateLimit(5, { uniformDistribution: true });
const start = process.hrtime();
for (let i = 0; i < n; i++) {
await lim();
process.stdout.write('.');
}
process.stdout.write('\n');
const hrt = process.hrtime(start);
const elapsed = (hrt[0] * 1000 + hrt[1] / 1e6) / 1000;
const rps = n / elapsed;
console.log(rps.toFixed(3) + ' req/s');
}
f()
.then(g)
.then(h)
.catch(e => console.log(e))
.then(() => console.log('READY'));