I'm connecting to a redis cluster node using
redis-cli -c -p 7001
When I issue info command or dbsize command, I get the count of keys that only reside on that node, and not the count of all the keys across all the nodes in my cluster. However, if I ask for a key which doesn't reside on this node, it gets me the key from that node. What if I want keys * to yield all keys from all the available nodes?