Run benchmarks versus latest external pool libraries
[poolifier.git] / benchmarks / versus-external-pools / pool-threadwork.js
1 // IMPORT LIBRARIES
2 const { ThreadPool } = require('threadwork')
3 // FINISH IMPORT LIBRARIES
4 // IMPORT FUNCTION TO BENCH
5 const functionToBench = require('./functions/function-to-bench')
6 // FINISH IMPORT FUNCTION TO BENCH
7 const size = Number(process.env.POOL_SIZE)
8
9 module.exports = new ThreadPool({ task: functionToBench, size: size })