-
Notifications
You must be signed in to change notification settings - Fork 470
New issue
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
Feature request: Auto discovery for for multiple dbIndex in the same redis cluster #555
Comments
Auto discovery is already available for a long time via menu -> add server. And redis CLUSTER does not support multiple databases, therefor no use of auto-detection there. From Redis docs:
https://redis.io/docs/reference/cluster-spec/ |
Thank you @sseide for your reply. Usually I'm using the the
As you can see in the above configuration, I have the same redis It will be great, if I can add 1 connection for the same redis maybe something like this:
|
mmmh - but this kind of auto-detection would only work in the very start of Redis-Commander. Every dataabse used later for the first time is not found. What about databases used but not holding any keys at the moment of RC startup (e.g. no temp session stored there or similar - might be the case for DEV/STG environments. Or, on system recovery where everything is setup new and RC started before other components use Redis. Using auto-Discovery here for automated setups might lead to unsuspected outcomes or a false feeling of "i see everything used"... So - if someone is going to implement the feature i will have a look at it. But no time myself for implementation. |
It would be great to have the ability to auto-discover all dbIndexes in use within the same Redis cluster, rather than having to manually specify them multiple times in the configuration (like here).
in redis cli it can be detected with the command
redis-cli INFO
orINFO keyspace
, in order to get the relevant db indexes that are in use (more info here).The text was updated successfully, but these errors were encountered: