ruby on rails - How to pass a command line argument to sidekiq -


to set delayed paperclip gem provides following instructions:

"make sure sidekiq ... listening paperclip queue, either adding sidekiq.yml config file under - queues: or passing command line argument -q paperclip sidekiq."

how this?

here's gist uses yaml option.

#/config/sidekiq.yml :concurrency: 7 :queues:   - [high, 7]   - [default, 5]   - [paperclip, 5] 

Comments

Popular posts from this blog

c++ - CryptStringToBinary API behavior -

c++ - Correct method for redrawing a layered window -

java.util.scanner - How to read and add only numbers to array from a text file -