Guy Morita

Results 15 comments of Guy Morita

@vavarun Hey, thanks for the report. Can you try again? I just updated NPM for raccoon to use the new version. 0.2.5. Lemme know if it's still a problem. Thanks.

Can you give some examples? What's the use case? How would you like the interface to look? On Mon, Nov 24, 2014 at 1:00 PM Alisson Cavalcante Agiani < [email protected]>...

Hi Jorn, Thanks for reaching out. It's definitely possible. It would require a fair amount of refactoring. Want to take a stab? Can you walk me through the use case?...

Sorry haven't had lots of time to maintain this.

Connect raccoon to your redis instance: raccoon.connect(port, url, auth); // example of localhost: // raccoon.connect(6379, '127.0.0.1'); // auth is optional, but required for remote redis instances

Raccoon.prototype.connect = function(port, url, auth){ port = port || 6379; url = url || '127.0.0.1'; auth = auth || ''; client = redis.createClient(port, url); if (auth){ client.auth(auth, function (err) {...