Commit | Line | Data |
---|---|---|
73cda448 JB |
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 | |
6bd72cd0 | 7 | const size = parseInt(process.env.POOL_SIZE) |
73cda448 | 8 | |
7a6a0a96 | 9 | module.exports = new ThreadPool({ task: functionToBench, size }) |