X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;f=README.MD;h=7bc3b55b4542591d1c42e9c147517c41a5593712;hb=8d9ce260ea63aed64614494d396488b01af8f3e7;hp=d7b5bd329e3b737e74792451952f79eefa9cc000;hpb=766e51a0c50e4aadad5f8c65a2b6689d91ba75d8;p=poolifier.git diff --git a/README.MD b/README.MD index d7b5bd32..7bc3b55b 100644 --- a/README.MD +++ b/README.MD @@ -1,9 +1,119 @@ -# Node Pool :arrow_double_up: :on: -[![JavaScript Style Guide](https://cdn.rawgit.com/standard/standard/master/badge.svg)](https://github.com/standard/standard) +# Node Thread Pool :arrow_double_up: :on: +[![JavaScript Style Guide](https://img.shields.io/badge/code_style-standard-brightgreen.svg)](https://standardjs.com) [![Dependabot](https://badgen.net/dependabot/dependabot/dependabot-core/?icon=dependabot)](https://badgen.net/dependabot/dependabot/dependabot-core/?icon=dependabot) [![Actions Status](https://github.com/pioardi/node-pool/workflows/NodeCI/badge.svg)](https://github.com/pioardi/node-pool/actions) -Node pool contains two worker-threads pool implementations.
+

Contents

+

+ Installation + · + Usage + · + API + · + Contribute + · + Compatibility + · + License +

+ +

Overview

+Node pool contains two worker-threads pool implementations , you don' t have to deal with worker-threads complexity.
The first implementation is a static thread pool , with a defined number of threads that are started at creation time .
-The second implementation is a dynamic thread pool with a number of threads started at creation time and other threads created when the load will increase ( with an upper limit ).
+The second implementation is a dynamic thread pool with a number of threads started at creation time and other threads created when the load will increase ( with an upper limit ), the new created threads will be stopped after a threshold.
+You have to implement your worker extending the ThreadWorker class
+

Installation

+ +``` +npm install node-thread-pool --save +``` +

Usage

+ +You can implement a worker in a simple way , extending the class ThreadWorker : + +```js +'use strict' +const { ThreadWorker } = require('node-pool') + +class MyWorker extends ThreadWorker { + constructor () { + super((data) => { + // this will be executed in the worker thread, + // the data will be received by using the execute method + return { ok: 1 } + }, { maxInactiveTime: 1000 * 60}) + } +} +module.exports = new MyWorker() +``` + +Instantiate your pool based on your needed : + +```js +'use strict' +const { FixedThreadPool, DynamicThreadPool } = require('node-pool') + +// a fixed thread pool +const pool = new FixedThreadPool(15, + './yourWorker.js') + +// or a dynamic thread pool +const pool = new DynamicThreadPool(10, 100, + './yourWorker.js') +pool.emitter.on('FullPool', () => console.log('Pool is full')) + +// the execute method signature is the same for both implementations, +// so you can easy switch from one to another +pool.execute({}).then(res => { + console.log(res) +}).catch .... + +``` + + See examples folder for more details. + +

Node versions

+ +You can use node version 10.x with --experimental-worker flag, or you can use an higher version (i.e 12.x)
+ +

API

+ +### `pool = new FixedThreadPool(numThreads, filePath, opts)` +`numThreads` (mandatory) Num of threads for this worker pool
+`filePath` (mandatory) Path to a file with a worker implementation
+`opts` (optional) An object with these properties : +- `errorHandler` - A function that will listen for error event on each worker thread +- `onlineHandler` - A function that will listen for online event on each worker thread +- `exitHandler` - A function that will listen for exit event on each worker thread +- `maxTasks` - This is just to avoid not useful warnings message, is used to set maxListeners on event emitters ( workers are event emitters) + +### `pool = new DynamicThreadPool(min, max, filePath, opts)` +`min` (mandatory) Same as FixedThreadPool numThreads , this number of threads will be always active
+`max` (mandatory) Max number of workers that this pool can contain, the new created threads will die after a threshold ( default is 1 minute , you can override it in your worker implementation).
+`filePath` (mandatory) Same as FixedThreadPool
+`opts` (optional) Same as FixedThreadPool
+ +### `pool.execute(data)` +Execute method is available on both pool implementations ( return type : Promise):
+`data` (mandatory) An object that you want to pass to your worker implementation
+ +### `pool.destroy()` +Destroy method is available on both pool implementations.
+This method will call the terminate method on each worker. + + +### `class YourWorker extends ThreadWorker` +`fn` (mandatory) The function that you want to execute on the worker thread
+`opts` (optional) An object with these properties : +- `maxInactiveTime` - Max time to wait tasks to work on ( in ms) , after this period the new worker threads will die. + +

Contribute

+ +See guidelines [CONTRIBUTING](./.github/CONTRIBUTING.md) + + +

License

+ +[MIT](./LICENSE)