Is there any way to get resque-web to work with a Redis To Go hosted redis instance?
UPDATE:
@Nemo157’s suggestion was correct. Ended up creating a test-evn.rb containing:
uri = URI.parse(" redis://XXXX@catfish.redistogo.com:9122")
Resque.redis = Redis.new(:host => uri.host, :port => uri.port, :password => uri.password)
Pass it the config file you’re using to setup redis in the app, e.g.
where
environment.rbcontains something like:Note: I haven’t tested this since all my redis instances have been on
localhost, but that’s my understanding of how it works.