X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;f=README.md;h=1b7e641b40bd27313756961437e09f1ab5a9db0c;hb=09a6305fb250c17cb2565f8cbe3d9afbb33f307c;hp=c5dd07ad504c127e389eae815e7428167a5c41ef;hpb=cdb1dc594e51dfcfebfcb5145df388cec270f453;p=poolifier.git diff --git a/README.md b/README.md index c5dd07ad..1b7e641b 100644 --- a/README.md +++ b/README.md @@ -7,8 +7,8 @@

Weekly Downloads - - Actions Status + + Actions Status Quality Gate Status @@ -37,8 +37,8 @@ Please consult our [general guidelines](#general-guidance). - Performance :racehorse: [benchmarks](./benchmarks/README.md) - Security :bank: :cop: [![Security Rating](https://sonarcloud.io/api/project_badges/measure?project=pioardi_poolifier&metric=security_rating)](https://sonarcloud.io/dashboard?id=pioardi_poolifier) [![Vulnerabilities](https://sonarcloud.io/api/project_badges/measure?project=pioardi_poolifier&metric=vulnerabilities)](https://sonarcloud.io/dashboard?id=pioardi_poolifier) - Easy to use :couple: -- Easy switch from a pool to another, easy to tune :white_check_mark: - Dynamic pool size :white_check_mark: +- Easy switch from a pool to another :white_check_mark: - No runtime dependencies :white_check_mark: - Proper async integration with node async hooks :white_check_mark: - Support for worker threads and cluster node modules :white_check_mark: @@ -145,7 +145,7 @@ Remember that workers can only send and receive serializable data. ## Node versions -Node versions >= 16.x are supported. +Node versions >= 16.14.x are supported. ## [API](https://poolifier.github.io/poolifier/) @@ -218,8 +218,6 @@ This method will call the terminate method on each worker. If `killBehavior` is set to `KillBehaviors.SOFT` your tasks have no timeout and your workers will not be terminated until your task is completed. Default: 60000 -- `async` (optional) - true/false. Set to true if your function contains async code pieces, else false. - Default: false - `killBehavior` (optional) - Dictates if your async unit (worker/process) will be deleted in case that a task is active on it. **KillBehaviors.SOFT**: If `currentTime - lastActiveTime` is greater than `maxInactiveTime` but a task is still running, then the worker **won't** be deleted. **KillBehaviors.HARD**: If `currentTime - lastActiveTime` is greater than `maxInactiveTime` but a task is still running, then the worker will be deleted.