perf: switch benchmarks to factorial(50000)
[poolifier.git] / examples / typescript / websocket-server-pool / ws-worker_threads / requests.js
index 1f302a6cc76a01bfa6ede514140e9b401af50bc3..9beb2b7828b077eb5fc00c5ce810b3dd7b148d82 100644 (file)
@@ -12,7 +12,7 @@ ws.on('open', () => {
     )
   }
   for (let i = 0; i < 60; i++) {
-    ws.send(JSON.stringify({ type: 'factorial', data: { number: 30 } }))
+    ws.send(JSON.stringify({ type: 'factorial', data: { number: 50000 } }))
   }
 })