How to configure resque-web to use Resque.redis.namespace?

I installed Resque.redis.namespace for my application and now resque-web no longer displays workers and queues.

Is there a way to get resque-web to know about redis.names space or, ideally, multiple duplicate spaces?

+5
source share
1 answer

Suppose you set Resque.redis.namespace to config/initializers/resque.rb. Then you can run the resque-web resource access path to this file as a command line argument, for example:

resque-web -p 8282 rails_root/config/initializers/resque.rb

-N :

resque-web -p 8282 -N myapp
+10

All Articles