X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;f=README.md;h=7767c75c1b07c28b96ffbe54a3acbb1e0369461f;hb=70a4f5ea122d3ddb2d2e0b245598ad241562e7f7;hp=05865e2cfcecfddae76d46a05eb89a4b139ba2f4;hpb=0feeec4ab35dae438017f69feb1a1a560ea9ffe8;p=poolifier.git diff --git a/README.md b/README.md index 05865e2c..7767c75c 100644 --- a/README.md +++ b/README.md @@ -11,7 +11,7 @@ Actions Status Quality Gate Status - + Code Coverage Javascript Standard Style Guide @@ -29,7 +29,7 @@ ## Why Poolifier? -Poolifier is used to perform CPU intensive and I/O intensive tasks on nodejs servers, it implements worker pools (yes, more worker pool implementations, so you can choose which one fit better for you) using [worker-threads](https://nodejs.org/api/worker_threads.html#worker_threads_worker_threads) and cluster pools using [Node.js cluster](https://nodejs.org/api/cluster.html) modules. +Poolifier is used to perform CPU intensive and I/O intensive tasks on nodejs servers, it implements worker pools using [worker-threads](https://nodejs.org/api/worker_threads.html#worker_threads_worker_threads) and cluster pools using [Node.js cluster](https://nodejs.org/api/cluster.html) modules. With poolifier you can improve your **performance** and resolve problems related to the event loop. Moreover you can execute your tasks using an API designed to improve the **developer experience**. Please consult our [general guidelines](#general-guidance). @@ -104,8 +104,7 @@ function yourFunction(data) { } module.exports = new ThreadWorker(yourFunction, { - maxInactiveTime: 60000, - async: false + maxInactiveTime: 60000 }) ``` @@ -140,7 +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))**. +**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**. Remember that workers can only send and receive serializable data. @@ -210,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.