X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;f=README.md;h=cb7a1ad994933295e35a53dbdeca21a8bf2e387a;hb=7dfbda36b5c996c25f30a0bf9261de5383c9acd4;hp=d4c60c23c88a5de93809134fb8ab99608c98d214;hpb=129ab848568510850a84dc550c5d2f2e5d804972;p=poolifier.git diff --git a/README.md b/README.md index d4c60c23..cb7a1ad9 100644 --- a/README.md +++ b/README.md @@ -242,8 +242,8 @@ This method will call the terminate method on each worker. Default: `60000` - `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 executing, then the worker **won't** be deleted. - **KillBehaviors.HARD**: If `currentTime - lastActiveTime` is greater than `maxInactiveTime` but a task is still executing, then the worker will be deleted. + **KillBehaviors.SOFT**: If `currentTime - lastActiveTime` is greater than `maxInactiveTime` but a task is still executing or queued, then the worker **won't** be deleted. + **KillBehaviors.HARD**: If `currentTime - lastActiveTime` is greater than `maxInactiveTime` but a task is still executing or queued, then the worker will be deleted. This option only apply to the newly created workers. Default: `KillBehaviors.SOFT` @@ -287,14 +287,12 @@ But in general, **always profile your application**. ## Contribute -Choose your task here [2.5.x](https://github.com/orgs/poolifier/projects/1), propose an idea, a fix, an improvement. +Choose your task here [2.6.x](https://github.com/orgs/poolifier/projects/1), propose an idea, a fix, an improvement. See [CONTRIBUTING](CONTRIBUTING.md) guidelines. ## Team - - **Creator/Owner:** - [**Alessandro Pio Ardizio**](https://github.com/pioardi)