README.md in sidekiq-limit_fetch-0.9 vs README.md in sidekiq-limit_fetch-1.0
- old
+ new
@@ -65,21 +65,27 @@
```yaml
:global: true
```
+or
+```ruby
+ Sidekiq.options[:global] = true
+```
+
+
If you use strict queue ordering (it will be used if you don't specify queue weights)
then you can set blocking status for queues. It means if a blocking
queue task is executing then no new task from lesser priority queues will
be ran. Eg,
```yaml
:queues:
- a
- b
- c
- :limits:
+ :blocking:
- b
```
In this case when a task for `b` queue is ran no new task from `c` queue
will be started.