I want to write a ueberDB Redis-Handler for my Etherpad.

I absolutely do not understand my problem because with PHP I can set and get key/values without any problems. It only does not work with NodeJS.

Here is a example code:

var redis = require("redis");
client = redis.createClient();
client.on("error", function (err) {
  console.log("Error " + err);
});

client.set("test", "string val", redis.print);
console.log(client.get("test"));

What do I wrong? Maybe somebody has a tip for me.

link|improve this question
Is have you set the host and port options correctly? redis.createClient(port, host, options) – Treffynnon Dec 3 '11 at 0:58
feedback

1 Answer

up vote 2 down vote accepted

First, you need to know if your redis client is connected. You can check with console.log(client) and you will see a varaible called "connected". You should see "true"

If you want to use redis in node you should use something like this

    client.set("test","val", function(err) {
        if (err) {
           // Something went wrong
           console.error("error");
        } else {
            client.get("test", function(err, value) {
                 if (err) {
                     console.error("error");
                 } else {
                     console.log("Worked: " + value);
                 }
            });
        }
    });

Keep in mind that all redis function are asynchronous.

link|improve this answer
Thanks. But if I use your code, I get nothing back?! – user1078442 Dec 3 '11 at 0:58
Well, be sure you're connected to redis and you can check the content of redis with the command "redis-cli" from CLI – racar Dec 3 '11 at 1:00
redis 127.0.0.1:6379> set test test OK redis 127.0.0.1:6379> get test "test" redis 127.0.0.1:6379> exit [root@123 tmp]# node 1.js [root@123 tmp]# – user1078442 Dec 3 '11 at 1:02
You are the best! – user1078442 Dec 3 '11 at 1:21
Feel free to accept this answer. Since you're new: read the faq (stackoverflow.com/faq) – racar Dec 3 '11 at 1:24
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.