来自client.get()的值是“true”而不是实际值

时间:2011-08-03 09:54:57

标签: node.js redis nowjs-sockets

我正在使用nowjs和node_redis。我想创造一些非常简单的东西。但到目前为止,该教程让我空白,因为他们只执行console.log()。

//REDIS
var redis = require("redis"),
    client = redis.createClient();

client.on("error", function (err) {
    console.log("Error "+ err);
});

client.set("card", "apple");

everyone.now.signalShowRedisCard = function() {
    nowjs.getGroup(this.now.room).now.receiveShowRedisCard(client.get("card").toString());
}

在我的客户方面:

now.receiveShowRedisCard = function(card_id) {
    alert("redis card: "+card_id);
}

警报只发出“真实” - 我希望获得“苹果”钥匙“卡”的价值。

有什么想法吗?

3 个答案:

答案 0 :(得分:12)

您正尝试以同步方式使用异步库。这是正确的方法:

//REDIS
var redis = require("redis"),
    client = redis.createClient();

client.on("error", function (err) {
    console.log("Error "+ err);
});

client.set("card", "apple", function(err) {
    if (err) throw err;
});

everyone.now.signalShowRedisCard = function() {
    var self = this;
    client.get("card", function (err, res) {
        nowjs.getGroup(self.now.room).now.receiveShowRedisCard(res);
    });
}

答案 1 :(得分:1)

使用异步Redis

npm i async-redis --save

const asyncRedis = require("async-redis");    
const client = asyncRedis.createClient(); 

await client.set("string key", "string val");
const value = await client.get("string key");

console.log(value);

await client.flushall("string key");

答案 2 :(得分:0)

一种选择是使用Bluebird将Redis回调转换为Promise。然后,您可以将其与.then()async/await一起使用。

import redis from 'redis'
import bluebird from 'bluebird'

bluebird.promisifyAll(redis)
const client = redis.createClient()

await client.set("myKey", "my value")
const value = await client.getAsync("myKey")

请注意,您的方法应附加Async