diff --git a/README.md b/README.md index 48d187d..500bf2f 100644 --- a/README.md +++ b/README.md @@ -15,8 +15,10 @@ Specify limits which you want to place on queues inside sidekiq.yml: ```yaml :limits: - restricted_queue: 5 + queue_name1: 5 + queue_name2: 10 ``` -In this example, tasks for restricted queue will be run by at most 5 -workers at the same time. +In this example, tasks for the first restricted queue will be run by at most 5 +workers at the same time and the second queue will have no more than 10 +workers simultaneously.