-
Notifications
You must be signed in to change notification settings - Fork 413
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
docs(pro): add local group concurrency section (#2551)
- Loading branch information
1 parent
c70708b
commit cce0774
Showing
2 changed files
with
22 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
# Local group concurrency | ||
|
||
It is also possible to set a specific concurrency value to a given group. This is useful if you require that different groups should run with different concurrency factors. | ||
|
||
Please keep in mind that when specifying a group's concurrency factor, you are storing this value in Redis, so it is your responsibility to remove it if you are not using it anymore. | ||
|
||
You can use the `setGroupConcurrency` method like this: | ||
|
||
```typescript | ||
import { QueuePro } from '@taskforcesh/bullmq-pro'; | ||
|
||
const queue = new QueuePro('myQueue', { connection }); | ||
const groupId = 'my group'; | ||
await queue.setGroupConcurrency(groupId, 4); | ||
``` | ||
|
||
And you can use the `getGroupConcurrency` method like this: | ||
|
||
```typescript | ||
const concurrency = await queue.getGroupConcurrency(groupId); | ||
``` |