feat: add less busy worker choice strategy to internal benchmarks
[poolifier.git] / benchmarks / internal / thread / fixed.js
1 const {
2 FixedThreadPool,
3 WorkerChoiceStrategies
4 } = require('../../../lib/index')
5 const { runPoolifierTest } = require('../../benchmarks-utils')
6
7 const size = 30
8 const numberOfTasks = 1
9
10 const fixedPool = new FixedThreadPool(
11 size,
12 './benchmarks/internal/thread/worker.js'
13 )
14
15 const fixedPoolLessUsed = new FixedThreadPool(
16 size,
17 './benchmarks/internal/thread/worker.js',
18 { workerChoiceStrategy: WorkerChoiceStrategies.LESS_USED }
19 )
20
21 const fixedPoolLessBusy = new FixedThreadPool(
22 size,
23 './benchmarks/internal/thread/worker.js',
24 { workerChoiceStrategy: WorkerChoiceStrategies.LESS_BUSY }
25 )
26
27 const fixedPoolWeightedRoundRobin = new FixedThreadPool(
28 size,
29 './benchmarks/internal/thread/worker.js',
30 { workerChoiceStrategy: WorkerChoiceStrategies.WEIGHTED_ROUND_ROBIN }
31 )
32
33 const fixedPoolFairShare = new FixedThreadPool(
34 size,
35 './benchmarks/internal/thread/worker.js',
36 { workerChoiceStrategy: WorkerChoiceStrategies.FAIR_SHARE }
37 )
38
39 async function fixedThreadTest (
40 { tasks, workerData } = { tasks: numberOfTasks, workerData: { proof: 'ok' } }
41 ) {
42 return runPoolifierTest(fixedPool, { tasks, workerData })
43 }
44
45 async function fixedThreadTestLessUsed (
46 { tasks, workerData } = { tasks: numberOfTasks, workerData: { proof: 'ok' } }
47 ) {
48 return runPoolifierTest(fixedPoolLessUsed, { tasks, workerData })
49 }
50
51 async function fixedThreadTestLessBusy (
52 { tasks, workerData } = { tasks: numberOfTasks, workerData: { proof: 'ok' } }
53 ) {
54 return runPoolifierTest(fixedPoolLessBusy, { tasks, workerData })
55 }
56
57 async function fixedThreadTestWeightedRoundRobin (
58 { tasks, workerData } = { tasks: numberOfTasks, workerData: { proof: 'ok' } }
59 ) {
60 return runPoolifierTest(fixedPoolWeightedRoundRobin, { tasks, workerData })
61 }
62
63 async function fixedThreadTestFairShare (
64 { tasks, workerData } = { tasks: numberOfTasks, workerData: { proof: 'ok' } }
65 ) {
66 return runPoolifierTest(fixedPoolFairShare, { tasks, workerData })
67 }
68
69 module.exports = {
70 fixedThreadTest,
71 fixedThreadTestLessUsed,
72 fixedThreadTestLessBusy,
73 fixedThreadTestWeightedRoundRobin,
74 fixedThreadTestFairShare
75 }