X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;f=README.md;h=c5dd07ad504c127e389eae815e7428167a5c41ef;hb=cdb1dc594e51dfcfebfcb5145df388cec270f453;hp=7767c75c1b07c28b96ffbe54a3acbb1e0369461f;hpb=227be16668f5a3adf78a255c20e956d6f5b3f567;p=poolifier.git diff --git a/README.md b/README.md index 7767c75c..c5dd07ad 100644 --- a/README.md +++ b/README.md @@ -8,7 +8,7 @@ Weekly Downloads - Actions Status + Actions Status Quality Gate Status @@ -139,8 +139,7 @@ pool.execute({}).then(res => { You can do the same with the classes ClusterWorker, FixedClusterPool and DynamicClusterPool. -**See examples folder for more details (in particular if you want to use a pool with [multiple worker functions](./examples/multiFunctionExample.js))**. -**Now TypeScript is also supported, find how to use it into the example folder**. +**See examples folder for more details (in particular if you want to use a pool with [multiple worker functions](./examples/multiFunctionExample.js))**. Remember that workers can only send and receive serializable data. @@ -175,6 +174,7 @@ Node versions >= 16.x are supported. Properties: - `medRunTime` (optional) - Use the tasks median run time instead of the tasks average run time in worker choice strategies. + - `weights` (optional) - The worker weights to use in the weighted round robin worker choice strategy: `{ 0: 200, 1: 300, ..., n: 100 }` Default: `{ medRunTime: false }`