We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I had a prolem running a redis connection with namespace, as described in resque:
config.redis = 'localhost:6379:alpha/high'
If i specify a namespace in connectioin, 2 wrong things happen:
_statuses do not appear in redis keys
Web interface did not show statuses
Howeverm jobs were executed and statuses recorde
What was wrong there?
I had to switch to database index selector - it works fine
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I had a prolem running a redis connection with namespace, as described in resque:
Set the redis connection. Takes any of:
String - a redis url string (e.g., 'redis://host:port')
String - 'hostname:port[:db][/namespace]'
Redis - a redis connection that will be namespaced :resque
Redis::Namespace - a namespaced redis connection that will be used as-is
Redis::Distributed - a distributed redis connection that will be used as-is
Hash - a redis connection hash (e.g. {:host => 'localhost', :port => 6379, :db => 0})
config.redis = 'localhost:6379:alpha/high'
If i specify a namespace in connectioin, 2 wrong things happen:
_statuses do not appear in redis keys
Web interface did not show statuses
Howeverm jobs were executed and statuses recorde
What was wrong there?
I had to switch to database index selector - it works fine
The text was updated successfully, but these errors were encountered: