-
-
Notifications
You must be signed in to change notification settings - Fork 185
/
bench.ts
68 lines (56 loc) · 1.55 KB
/
bench.ts
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
66
67
68
import Benchmark, {type Deferred, type Event} from 'benchmark';
import PQueue from './source/index.js';
const suite = new Benchmark.Suite();
// Benchmark typings aren't up to date, let's help out manually
type Resolvable = Deferred & {resolve: () => void};
suite
.add('baseline', {
defer: true,
async fn(deferred: Resolvable) {
const queue = new PQueue();
for (let i = 0; i < 100; i++) {
// eslint-disable-next-line @typescript-eslint/no-empty-function
queue.add(async () => {});
}
await queue.onEmpty();
deferred.resolve();
},
})
.add('operation with random priority', {
defer: true,
async fn(deferred: Resolvable) {
const queue = new PQueue();
for (let i = 0; i < 100; i++) {
// eslint-disable-next-line @typescript-eslint/no-empty-function
queue.add(async () => {}, {
priority: Math.trunc(Math.random() * 100),
});
}
await queue.onEmpty();
deferred.resolve();
},
})
.add('operation with increasing priority', {
defer: true,
async fn(deferred: Resolvable) {
const queue = new PQueue();
for (let i = 0; i < 100; i++) {
// eslint-disable-next-line @typescript-eslint/no-empty-function
queue.add(async () => {}, {
priority: i,
});
}
await queue.onEmpty();
deferred.resolve();
},
})
.on('cycle', (event: Event) => {
console.log(String(event.target));
})
.on('complete', function () {
// @ts-expect-error benchmark typings incorrect
console.log(`Fastest is ${(this as Benchmark.Suite).filter('fastest').map('name') as string}`);
})
.run({
async: true,
});