perf: switch to bencher for benchmarking
[poolifier.git] / benchmarks / README.md
CommitLineData
2b74d91a 1# Poolifier benchmarks
be0676b3
APA
2
3Welcome to poolifier benchmarks and thanks to look into this project.
4
5## Folder Structure
6
2b74d91a 7The [internal](./internal) folder contains poolifier internal benchmark.
be0676b3 8
2b74d91a 9## Poolifier benchmark versus other worker pools
be0676b3 10
6ed0e2d4 11To compare poolifier pools performance vs other pools performance we chose to use [hyperfine](https://github.com/sharkdp/hyperfine).
af03108f 12We chose to use this tool because it allows to run isolated Node.js processes so each pool does not impact each other.
0c757ef3 13
77492f2e 14- External pools with which we compare the poolifier results:
af03108f
JB
15
16 - [piscina](https://github.com/piscinajs/piscina)
17 - [tinypool](https://github.com/tinylibs/tinypool)
18 - [workerpool](https://github.com/josdejong/workerpool)
19 - [worker-nodes](https://github.com/allegro/node-worker-nodes)
20 - [node-worker-threads-pool](https://github.com/SUCHMOKUO/node-worker-threads-pool)
c102227e 21 - [nanothreads](https://github.com/snuffyDev/nanothreads)
be0676b3 22
7a21a451 23 Those are our results:
be0676b3 24
450ec5c8 25 - CPU Intensive task with 100k operations submitted to each pool: [https://poolifier.github.io/benchmark](https://poolifier.github.io/benchmark).
be0676b3 26
af03108f 27- External pools with which we used to compare the poolifier results:
ae43d349 28
dbca3be9 29 <!-- - [node-worker-threads-pool](https://github.com/SUCHMOKUO/node-worker-threads-pool): removed because it does not support dynamic modules import or import outside the task function. The task function is expected to be self-contained, which makes it difficult to use in real world application without ugly hacks. -->
bea2d6e3 30
af03108f
JB
31 - [worker-threads-pool](https://github.com/watson/worker-threads-pool): removed because unmaintained since more than 4 years.
32 - [threadwork](https://github.com/kevlened/threadwork): removed because unmaintained since more than 3 years.
33 - [microjob](https://github.com/wilk/microjob): removed because unmaintained since more than 5 years.
4e434375 34 - [threads.js](https://github.com/andywer/threads.js): removed because not a threads pool.
be0676b3 35
2a87030e 36> :warning: **We would need funds to run our benchmark more often and on Cloud VMs, please consider to sponsor this project**
7a21a451 37
450ec5c8 38Read the [README.md](https://github.com/poolifier/benchmark#readme) to know how to run the benchmark.
be0676b3 39
eeabc751 40## Poolifier internal benchmark
be0676b3 41
0a9d76fc
JB
42### Usage
43
7a01f9c5 44To run the internal benchmark, you just need to navigate to the root of poolifier cloned repository and run `pnpm benchmark`.
0a9d76fc 45
4e1212db 46### [Results](https://poolifier.github.io/benchmark-results/dev/bench)