feat: add less busy worker choice strategy
[poolifier.git] / benchmarks / internal / cluster / worker.js
index c7211b7bfd2b9fe5883059ef9bba8771d614381d..926278be77e4484fbbd9200af2b48fa76db27f26 100644 (file)
@@ -1,14 +1,16 @@
 'use strict'
+const { isMaster } = require('cluster')
 const { ClusterWorker } = require('../../../lib/index')
+const { executeWorkerFunction } = require('../../benchmarks-utils')
+const { WorkerFunctions } = require('../../benchmarks-types')
+
+const debug = false
 
 function yourFunction (data) {
-  for (let i = 0; i <= 1000; i++) {
-    const o = {
-      a: i
-    }
-    JSON.stringify(o)
-  }
-  // console.log('This is the main thread ' + isMainThread)
+  data = data || {}
+  data.function = data.function || WorkerFunctions.jsonIntegerSerialization
+  executeWorkerFunction(data)
+  debug === true && console.debug('This is the main thread ' + isMaster)
   return { ok: 1 }
 }