If I am doing this:
client.get("foo", (err, res) => {
console.log(res);
});
And there billions of keys stored in the Redis server, would it return the data as quick as if there stored only just couple of keys?
OR that I should use index (if there indexes in Redis), just like querying the DB in MongoDB?