X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;f=README.md;h=07bcdb10543cf3f52e0adc755ff3dd2f38459fbb;hb=49be33feded000ed776ee589274e154fa519b263;hp=857d9c26604192619b5a696ee400a43183b46e81;hpb=4dce520ecdc24e12d96060c02869b37723d8a206;p=poolifier.git diff --git a/README.md b/README.md index 857d9c26..07bcdb10 100644 --- a/README.md +++ b/README.md @@ -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 for [multiple 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 }` @@ -209,7 +209,7 @@ This method will call the terminate method on each worker. ### `class YourWorker extends ThreadWorker/ClusterWorker` -`fn` (mandatory) The function that you want to execute on the worker +`taskFunctions` (mandatory) The task function(s) that you want to execute on the worker `opts` (optional) An object with these properties: - `maxInactiveTime` (optional) - Max time to wait tasks to work on in milliseconds, after this period the new worker will die.